sodokuSolver/sodokuSolver.nix
2023-03-24 23:48:24 +01:00

12 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";
}