summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-03-07 12:11:25 +0000
committerGitHub <noreply@github.com>2018-03-07 12:11:25 +0000
commit906713a0b12f9a035df43f3e8f502dc18e672719 (patch)
tree6296d72e9b079e56246fa51dc219b3ce8ba435f3 /pkgs/development
parenta1858b08322e0ce220fbac0cfbfc27ea86e05943 (diff)
parent3f738231177cb1823f912c7f566cffa94ae3440e (diff)
downloadnixlib-906713a0b12f9a035df43f3e8f502dc18e672719.tar
nixlib-906713a0b12f9a035df43f3e8f502dc18e672719.tar.gz
nixlib-906713a0b12f9a035df43f3e8f502dc18e672719.tar.bz2
nixlib-906713a0b12f9a035df43f3e8f502dc18e672719.tar.lz
nixlib-906713a0b12f9a035df43f3e8f502dc18e672719.tar.xz
nixlib-906713a0b12f9a035df43f3e8f502dc18e672719.tar.zst
nixlib-906713a0b12f9a035df43f3e8f502dc18e672719.zip
Merge pull request #36412 from mt-caret/camlimages
ocaml-ng.ocamlPackages_4_06.camlimages: 4.1.2 -> 5.0.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/camlimages/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/camlimages/default.nix b/pkgs/development/ocaml-modules/camlimages/default.nix
new file mode 100644
index 000000000000..394b0c507be5
--- /dev/null
+++ b/pkgs/development/ocaml-modules/camlimages/default.nix
@@ -0,0 +1,12 @@
+{ stdenv, fetchzip, findlib, jbuilder, ocaml, configurator, cppo, lablgtk }:
+stdenv.mkDerivation rec {
+  name = "camlimages-${version}";
+  version = "5.0.0";
+  src = fetchzip {
+    url = "https://bitbucket.org/camlspotter/camlimages/get/${version}.tar.gz";
+    sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
+  };
+  buildInputs = [ findlib jbuilder ocaml configurator cppo lablgtk ];
+  buildPhase = "jbuilder build -p camlimages";
+  inherit (jbuilder) installPhase;
+}