haskellPackages.Unixutils: New expression

This commit is contained in:
Lukas Toth
2014-04-15 01:59:59 +02:00
committed by Peter Simons
parent 66e750190f
commit f5fa89f198
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, filepath, pureMD5, regexTdfa, zlib }:
cabal.mkDerivation (self: {
pname = "Unixutils";
version = "1.52";
sha256 = "1gp04mc6irycwazykl9kpyhkkryn3hbnpn08ih6cjbsm3p8yi8b4";
buildDepends = [ filepath pureMD5 regexTdfa zlib ];
meta = {
homepage = "http://src.seereason.com/haskell-unixutils";
description = "A crude interface between Haskell and Unix-like operating systems";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})