unison/shared/default.nix

22 lines
712 B
Nix
Raw Normal View History

{ mkDerivation, aeson, base, base64-bytestring, bifunctors, bytestring
2015-10-19 22:36:16 +03:00
, containers, comonad, free, murmur-hash, mtl, prelude-extras
, stdenv, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck
, text, transformers, vector
2015-05-20 22:56:13 +03:00
}:
mkDerivation {
pname = "unison-shared";
version = "0.1";
2015-06-02 10:07:50 +03:00
src = ./.;
2015-05-20 22:56:13 +03:00
buildDepends = [
2015-09-30 21:42:10 +03:00
aeson base base64-bytestring bifunctors bytestring containers free
murmur-hash mtl text transformers prelude-extras vector
2015-05-20 22:56:13 +03:00
];
2015-10-19 22:36:16 +03:00
testDepends = [
base containers tasty tasty-hunit tasty-quickcheck tasty-smallcheck
transformers
2015-10-19 22:36:16 +03:00
];
2015-05-20 22:56:13 +03:00
homepage = "http://unisonweb.org";
description = "The Unison programming language and platform";
license = stdenv.lib.licenses.mit;
}