nixpkgs/pkgs/development/libraries/haskell/system-filepath/default.nix
Peter Simons bb2c5cbf70 haskell-system-filepath: updated to version 0.4.2
svn path=/nixpkgs/trunk/; revision=30207
2011-11-03 18:17:17 +00:00

19 lines
551 B
Nix

{ cabal, text }:
cabal.mkDerivation (self: {
pname = "system-filepath";
version = "0.4.2";
sha256 = "070srsvqqjix0afy5ch1zcmpnrrszkds83rv0dp0izqrlzl038mr";
buildDepends = [ text ];
meta = {
homepage = "https://john-millikin.com/software/hs-filepath/";
description = "High-level, byte-based file and directory path manipulations";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})