13 lines
353 B
Nix
13 lines
353 B
Nix
|
{ mkDerivation, array, base, containers, lib }:
|
||
|
mkDerivation {
|
||
|
pname = "sodokuSolver";
|
||
|
version = "0.1.0.0";
|
||
|
src = ./.;
|
||
|
isLibrary = false;
|
||
|
isExecutable = true;
|
||
|
executableHaskellDepends = [ array base containers ];
|
||
|
homepage = "https://git.nerfingen.de/nerf/sodokuSolver";
|
||
|
license = lib.licenses.gpl3Plus;
|
||
|
mainProgram = "sodokuSolver";
|
||
|
}
|