reflex/default.nix

13 lines
299 B
Nix
Raw Normal View History

2015-03-24 21:53:03 +03:00
{ mkDerivation, dependent-map, dependent-sum
, mtl, semigroups, these
2015-01-31 19:05:35 +03:00
}:
mkDerivation {
2015-01-31 19:05:35 +03:00
pname = "reflex";
version = "0.1";
2015-02-27 06:26:07 +03:00
src = builtins.filterSource (path: type: baseNameOf path != ".git") ./.;
2015-01-31 19:05:35 +03:00
buildDepends = [
2015-03-24 21:53:03 +03:00
dependent-map dependent-sum mtl semigroups these
2015-01-31 19:05:35 +03:00
];
license = null;
}