reflex/default.nix
2015-03-24 14:53:03 -04:00

13 lines
299 B
Nix

{ mkDerivation, dependent-map, dependent-sum
, mtl, semigroups, these
}:
mkDerivation {
pname = "reflex";
version = "0.1";
src = builtins.filterSource (path: type: baseNameOf path != ".git") ./.;
buildDepends = [
dependent-map dependent-sum mtl semigroups these
];
license = null;
}