e55ca0628f
- generic-deriving: updated to version 1.2.1 - ghc-mod: updated to version 1.10.17 - gitit: updated to version 0.10.0.1 - graphviz: updated to version 2999.13.0.3 - hsemail: updated to version 1.7.2 - split: updated to version 0.1.4.3 svn path=/nixpkgs/trunk/; revision=34384
15 lines
434 B
Nix
15 lines
434 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "split";
|
|
version = "0.1.4.3";
|
|
sha256 = "1i9vmb0zvmhqj6qcbnsapsk9lhsyzznz336c8s7v4sz20s99hsby";
|
|
meta = {
|
|
homepage = "http://code.haskell.org/~byorgey/code/split";
|
|
description = "Combinator library for splitting lists";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|