mirror of
https://github.com/vale981/boon
synced 2025-03-04 09:01:39 -05:00
11 lines
307 B
Nix
11 lines
307 B
Nix
{ 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";
|
|
}
|