boon/default.nix

12 lines
307 B
Nix
Raw Permalink Normal View History

2016-11-15 21:35:36 +01:00
{ mkDerivation, base, gasp, lens, lp-diagrams, marxup, stdenv }:
mkDerivation {
pname = "boon";
version = "1.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base gasp lens lp-diagrams marxup ];
description = "A generator of nix files";
license = "GPL";
}