hnix/default.nix

22 lines
635 B
Nix
Raw Normal View History

2015-06-23 03:47:07 +02:00
{ mkDerivation, ansi-wl-pprint, base, containers, data-fix, parsers
, stdenv, tasty, tasty-hunit, tasty-th, text, transformers
, trifecta, unordered-containers
}:
2015-06-23 03:47:07 +02:00
mkDerivation {
pname = "hnix";
2015-06-23 23:50:03 +02:00
version = "0.2.0";
2015-06-23 03:47:07 +02:00
src = ./.;
isLibrary = true;
isExecutable = true;
2014-06-29 01:30:47 +02:00
buildDepends = [
2015-06-23 03:47:07 +02:00
ansi-wl-pprint base containers data-fix parsers text transformers
trifecta unordered-containers
];
2014-08-28 21:46:21 +02:00
testDepends = [
2015-06-23 03:47:07 +02:00
base containers data-fix tasty tasty-hunit tasty-th text
2014-08-28 21:46:21 +02:00
];
2015-06-23 03:47:07 +02:00
homepage = "http://github.com/jwiegley/hnix";
description = "Haskell implementation of the Nix language";
license = stdenv.lib.licenses.bsd3;
}