mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #3226 from hrdinka/haskell-clay
haskell-clay: add package version 0.9.0.1
This commit is contained in:
commit
da28770de3
15
pkgs/development/libraries/haskell/clay/default.nix
Normal file
15
pkgs/development/libraries/haskell/clay/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user