-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraft.nix
21 lines (21 loc) · 891 Bytes
/
raft.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
mkDerivation, stdenv, fetchurl,
aeson, attoparsec, base, binary, bytestring, cereal, containers, data-default, ghc-prim, mtl, parallel, scientific, split, stm, text, time, tostring, zlib
}:
mkDerivation rec {
pname = "raft";
version = "0.4.0.0";
src = fetchurl {
name = "${pname}-${version}.tar.bz";
url = "https://bitbucket.org/functionally/${pname}/downloads/${pname}-${version}.tar.gz";
sha256 = "1945vrzgb6r3g5qb17rlfcqh68wp9dmmnaxbc2wsp5jyjcnr8mv5";
};
libraryHaskellDepends = [
aeson attoparsec base binary bytestring cereal containers data-default ghc-prim mtl parallel scientific split stm text time tostring zlib
];
isLibrary = true;
isExecutable = false;
homepage = "https://bitbucket.org/functionally/raft";
description = "Miscellaneous Haskell utilities for data structures and data manipulation";
license = stdenv.lib.licenses.mit;
}