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