hnix/default.nix

19 lines
395 B
Nix
Raw Normal View History

{ cabal, parsers, trifecta, text }:
2014-06-29 01:30:47 +02:00
cabal.mkDerivation (self: {
pname = "hnix";
version = "0.0.1";
2014-06-29 01:30:47 +02:00
src = ./.;
buildDepends = [
parsers
trifecta
2014-06-29 01:30:47 +02:00
text
];
meta = {
homepage = "https://github.com/jwiegley/hnix";
description = "Haskell implementation of the Nix language";
2014-06-29 01:30:47 +02:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})