mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add JuicyPixels Haskell package
Forgot to attach the Nix expression for that package. It is generated by cabal2nix and works fine on my machine (i686, ghc7.4.1).
This commit is contained in:
parent
978f18b931
commit
b9e1a3f109
1 changed files with 18 additions and 0 deletions
18
pkgs/development/libraries/haskell/JuicyPixels/default.nix
Normal file
18
pkgs/development/libraries/haskell/JuicyPixels/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ cabal, cereal, deepseq, mtl, primitive, transformers, vector
|
||||
, zlib
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "JuicyPixels";
|
||||
version = "1.3";
|
||||
sha256 = "07wljfag4ylw16wdi7znjb61pfihdik5d7p4h2lmz6xirm4mjzrm";
|
||||
buildDepends = [
|
||||
cereal deepseq mtl primitive transformers vector zlib
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/Twinside/Juicy.Pixels";
|
||||
description = "Picture loading/serialization (in png, jpeg and bitmap)";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue