summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bmp
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-11-27 13:57:26 +0100
committerPeter Simons <simons@cryp.to>2012-11-27 15:05:43 +0100
commit6dfa1da45fdd670554886944f671b7a23ce97a34 (patch)
treea0fb6b1ef8628bf8d6219ff9b89782eb43289983 /pkgs/development/libraries/haskell/bmp
parente6bd4b6865680325d26829262240fd9215f88d00 (diff)
downloadnixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.tar
nixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.tar.gz
nixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.tar.bz2
nixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.tar.lz
nixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.tar.xz
nixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.tar.zst
nixpkgs-6dfa1da45fdd670554886944f671b7a23ce97a34.zip
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.
Diffstat (limited to 'pkgs/development/libraries/haskell/bmp')
-rw-r--r--pkgs/development/libraries/haskell/bmp/1.2.2.1.nix (renamed from pkgs/development/libraries/haskell/bmp/default.nix)0
-rw-r--r--pkgs/development/libraries/haskell/bmp/1.2.3.2.nix15
2 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/bmp/default.nix b/pkgs/development/libraries/haskell/bmp/1.2.2.1.nix
index e018ac7a8d2..e018ac7a8d2 100644
--- a/pkgs/development/libraries/haskell/bmp/default.nix
+++ b/pkgs/development/libraries/haskell/bmp/1.2.2.1.nix
diff --git a/pkgs/development/libraries/haskell/bmp/1.2.3.2.nix b/pkgs/development/libraries/haskell/bmp/1.2.3.2.nix
new file mode 100644
index 00000000000..64c13f15ee1
--- /dev/null
+++ b/pkgs/development/libraries/haskell/bmp/1.2.3.2.nix
@@ -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 ];
+  };
+})