graphSat/graphSat.nix

16 lines
460 B
Nix
Raw Normal View History

2022-12-21 00:33:56 +01:00
{ mkDerivation, array, base, containers, lib }:
mkDerivation {
pname = "graphSat";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ array base containers ];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base ];
homepage = "https://git.nerfingen.de/nerf/graphSat";
description = "Sat generator for headguessings";
license = lib.licenses.gpl3Plus;
mainProgram = "graphSat";
}