haskell-clay: add package version 0.9.0.1

This commit is contained in:
Christoph Hrdinka 2014-07-10 10:02:58 +02:00
parent 0114a972c7
commit 71a0dfd568
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal, HUnit, mtl, testFramework, testFrameworkHunit, text }:
cabal.mkDerivation (self: {
pname = "clay";
version = "0.9.0.1";
sha256 = "1w2617kpj6rblmycqb97gyshwbvzp5w2h4xh494mvdzi3bkahqpn";
buildDepends = [ mtl text ];
testDepends = [ HUnit mtl testFramework testFrameworkHunit text ];
meta = {
homepage = "http://fvisser.nl/clay";
description = "CSS preprocessor as embedded Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -411,6 +411,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
classyPreludeConduit = callPackage ../development/libraries/haskell/classy-prelude-conduit {};
clay = callPackage ../development/libraries/haskell/clay {};
clientsession = callPackage ../development/libraries/haskell/clientsession {};
clock = callPackage ../development/libraries/haskell/clock {};