about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-08-03 13:54:42 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2021-08-03 19:57:29 +0200
commit1666ffebb1266d7af3e6f1225637c908104b6301 (patch)
treebe8575aa68076ef2fcdefe86b9f3d7782b3f09e2 /pkgs/development/ocaml-modules
parent8a8acb893e6071031193ab982bd66d42be5b15d3 (diff)
downloadnixlib-1666ffebb1266d7af3e6f1225637c908104b6301.tar
nixlib-1666ffebb1266d7af3e6f1225637c908104b6301.tar.gz
nixlib-1666ffebb1266d7af3e6f1225637c908104b6301.tar.bz2
nixlib-1666ffebb1266d7af3e6f1225637c908104b6301.tar.lz
nixlib-1666ffebb1266d7af3e6f1225637c908104b6301.tar.xz
nixlib-1666ffebb1266d7af3e6f1225637c908104b6301.tar.zst
nixlib-1666ffebb1266d7af3e6f1225637c908104b6301.zip
ocamlPackages.checkseum: 0.3.1 -> 0.3.2
https://github.com/mirage/checkseum/releases/tag/v0.3.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/checkseum/default.nix8
-rw-r--r--pkgs/development/ocaml-modules/checkseum/makefile-no-opam.patch12
2 files changed, 2 insertions, 18 deletions
diff --git a/pkgs/development/ocaml-modules/checkseum/default.nix b/pkgs/development/ocaml-modules/checkseum/default.nix
index 527afec33eb3..3483af1dd416 100644
--- a/pkgs/development/ocaml-modules/checkseum/default.nix
+++ b/pkgs/development/ocaml-modules/checkseum/default.nix
@@ -6,7 +6,7 @@
 }:
 
 buildDunePackage rec {
-  version = "0.3.1";
+  version = "0.3.2";
   pname = "checkseum";
 
   useDune2 = true;
@@ -15,13 +15,9 @@ buildDunePackage rec {
 
   src = fetchurl {
     url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz";
-    sha256 = "b9e4d054e17618b1faed8c0eb15afe0614b2f093e58b59a180bda4500a5d2da1";
+    sha256 = "9cdd282ea1cfc424095d7284e39e4d0ad091de3c3f2580539d03f6966d45ccd5";
   };
 
-  patches = [
-    ./makefile-no-opam.patch
-  ];
-
   nativeBuildInputs = [
     dune-configurator
     pkg-config
diff --git a/pkgs/development/ocaml-modules/checkseum/makefile-no-opam.patch b/pkgs/development/ocaml-modules/checkseum/makefile-no-opam.patch
deleted file mode 100644
index 49fb41b2e008..000000000000
--- a/pkgs/development/ocaml-modules/checkseum/makefile-no-opam.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/freestanding/Makefile b/freestanding/Makefile
-index d535050..bb286bd 100644
---- a/freestanding/Makefile
-+++ b/freestanding/Makefile
-@@ -1,4 +1,6 @@
--PKG_CONFIG_PATH := $(shell opam config var prefix)/lib/pkgconfig
-+ifneq (, $(shell command -v opam))
-+PKG_CONFIG_PATH ?= $(shell opam var prefix)/lib/pkgconfig
-+endif
- 
- EXISTS := $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config --exists ocaml-freestanding; echo $$?)
-