nixpkgs/pkgs/development/libraries/haskell/directory-tree/default.nix
2012-07-23 11:56:21 +02:00

16 lines
536 B
Nix

{ cabal, filepath }:
cabal.mkDerivation (self: {
pname = "directory-tree";
version = "0.10.1";
sha256 = "02acmfdw1yjb0h9dpjy04xxclsasm1p0m6w1dvccd4x2aqc6ybbw";
buildDepends = [ filepath ];
meta = {
homepage = "http://coder.bsimmons.name/blog/2009/05/directory-tree-module-released/";
description = "A simple directory-like tree datatype, with useful IO functions";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})