de1a6e09d7
haskell-attoparsec-conduit: added version 0.0.0 haskell-blaze-builder-conduit: added version 0.0.0 haskell-conduit: added version 0.0.0.1 haskell-http-conduit: added version 1.0.0 haskell-lifted-base: added version 0.1.0.2 haskell-xml-conduit: added version 0.5.0 haskell-zlib-conduit: added version 0.0.0 svn path=/nixpkgs/trunk/; revision=31141
19 lines
498 B
Nix
Executable file
19 lines
498 B
Nix
Executable file
{ cabal, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "path-pieces";
|
|
version = "0.1.0";
|
|
sha256 = "12dgiq2pz94pwa5v5wv96ps0nl5w23r44nnp4lm4cdhl063c9w8d";
|
|
buildDepends = [ text ];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/path-pieces";
|
|
description = "Components of paths";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|