forked from mirrors/nixpkgs
haskell-bmp: add version 1.2.3.2
The new version is currently unused, though, because it compiles only with GHC 7.6.1 or later.
This commit is contained in:
parent
e6bd4b6865
commit
6dfa1da45f
15
pkgs/development/libraries/haskell/bmp/1.2.3.2.nix
Normal file
15
pkgs/development/libraries/haskell/bmp/1.2.3.2.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ cabal, binary }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "bmp";
|
||||
version = "1.2.3.2";
|
||||
sha256 = "0lr6ys15ap3myzv48xmcy0bv17s4x2drskqz3kmbp06knrx9y1bh";
|
||||
buildDepends = [ binary ];
|
||||
meta = {
|
||||
homepage = "http://code.ouroborus.net/bmp";
|
||||
description = "Read and write uncompressed BMP image files";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
|
@ -518,7 +518,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
bloomfilter = callPackage ../development/libraries/haskell/bloomfilter {};
|
||||
|
||||
bmp = callPackage ../development/libraries/haskell/bmp {};
|
||||
bmp_1_2_2_1 = callPackage ../development/libraries/haskell/bmp/1.2.2.1.nix {};
|
||||
bmp_1_2_3_2 = callPackage ../development/libraries/haskell/bmp/1.2.3.2.nix {};
|
||||
bmp = self.bmp_1_2_2_1; # later versions work only with ghc 7.6 and beyond
|
||||
|
||||
Boolean = callPackage ../development/libraries/haskell/Boolean {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue