about summary refs log tree commit diff
path: root/pkgs/development/libraries/science
diff options
context:
space:
mode:
authorRaghav Sood <r@raghavsood.com>2024-05-14 11:58:50 +0800
committerRaghav Sood <r@raghavsood.com>2024-05-14 11:58:50 +0800
commit4b103239d743f36bb0c5fb9dec891a088a42a056 (patch)
treea194d10c524bd4740f5757330dff76451fa273af /pkgs/development/libraries/science
parent83c29c2040be9a9856de2d15a840c7e24d2fe46d (diff)
bicpl: unstable-2023-01-19 -> unstable-2024-05-14
Diffstat (limited to 'pkgs/development/libraries/science')
-rw-r--r--pkgs/development/libraries/science/biology/bicpl/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/development/libraries/science/biology/bicpl/default.nix b/pkgs/development/libraries/science/biology/bicpl/default.nix
index 45d1b159d0747..fd9e4f4003e03 100644
--- a/pkgs/development/libraries/science/biology/bicpl/default.nix
+++ b/pkgs/development/libraries/science/biology/bicpl/default.nix
@@ -2,7 +2,6 @@
   lib,
   stdenv,
   fetchFromGitHub,
-  fetchpatch,
   cmake,
   libminc,
   netpbm,
@@ -10,24 +9,16 @@
 
 stdenv.mkDerivation rec {
   pname = "bicpl";
-  version = "unstable-2023-01-19";
+  version = "unstable-2024-05-14";
 
   # master is not actively maintained, using develop and develop-apple branches
   src = fetchFromGitHub {
     owner = "BIC-MNI";
     repo = pname;
-    rev = "884b3ac8db945a17df51a325d29f49b825a61c3e";
-    hash = "sha256-zAA+hPwjMawQ1rJuv8W30EqKO+AI0aq9ybquBnKlzC0=";
+    rev = "7e1e791483cf135fe29b8eecd7a360aa892823ae";
+    hash = "sha256-SvbtPUfEYp3IGivG+5yFdJF904miyMk+s15zwW7e7b4=";
   };
 
-  patches = [
-    # fixes build by including missing time.h header
-    (fetchpatch {
-      url = "https://github.com/RaghavSood/bicpl/commit/3def4acd6bae61ff7a930ef8422ad920690382a6.patch";
-      hash = "sha256-VdAKuLWTZY7JriK1rexIiuj8y5ToaSEJ5Y+BbnfdYnI=";
-    })
-  ];
-
   nativeBuildInputs = [ cmake ];
   buildInputs = [
     libminc