haskell-hsini: add version 0.2

This commit is contained in:
Peter Simons
2014-03-04 11:29:30 +01:00
parent 41e0214bb1
commit 51bb0bf697
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ cabal, HUnit, mtl, parsec, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, testFrameworkTh
}:
cabal.mkDerivation (self: {
pname = "hsini";
version = "0.2";
sha256 = "0d9dhzaw2v9r0hb4lywzw4f0inijbcw5brc5dh45zfkalmn3aqam";
buildDepends = [ mtl parsec ];
testDepends = [
HUnit mtl parsec QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2 testFrameworkTh
];
meta = {
description = "Package for user configuration files (INI)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})