summary refs log tree commit diff
path: root/pkgs/development/tools/misc/macdylibbundler/default.nix
diff options
context:
space:
mode:
authoramesgen <amesgen@amesgen.de>2021-10-16 15:00:38 +0200
committeramesgen <amesgen@amesgen.de>2021-10-16 15:00:38 +0200
commit29c8e91c5dc5fcd510e00ebf0611481458b4d31d (patch)
tree10d5a15e09d42a4055dde4a848f7978dad5067e8 /pkgs/development/tools/misc/macdylibbundler/default.nix
parent1ec02e206b6338b69b852b708ade33fc182ab5f5 (diff)
downloadnixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.tar
nixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.tar.gz
nixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.tar.bz2
nixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.tar.lz
nixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.tar.xz
nixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.tar.zst
nixpkgs-29c8e91c5dc5fcd510e00ebf0611481458b4d31d.zip
macdylibbundler: 20180825 -> 1.0.0
Diffstat (limited to 'pkgs/development/tools/misc/macdylibbundler/default.nix')
-rw-r--r--pkgs/development/tools/misc/macdylibbundler/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/macdylibbundler/default.nix b/pkgs/development/tools/misc/macdylibbundler/default.nix
index f37815081ee..dbcd49dcfbe 100644
--- a/pkgs/development/tools/misc/macdylibbundler/default.nix
+++ b/pkgs/development/tools/misc/macdylibbundler/default.nix
@@ -1,14 +1,14 @@
 { lib, stdenv, makeWrapper, fetchFromGitHub, cctools }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   pname = "macdylibbundler";
-  version = "20180825";
+  version = "1.0.0";
 
   src = fetchFromGitHub {
     owner = "auriamg";
     repo = "macdylibbundler";
-    rev = "ce13cb585ead5237813b85e68fe530f085fc0a9e";
-    sha256 = "149p3dcnap4hs3nhq5rfvr3m70rrb5hbr5xkj1h0gsfp0d7gvxnj";
+    rev = version;
+    sha256 = "02w04qvaf9v8yw8bgncx5qj3jx08xdfa855isvq92q27hsb8m8hv";
   };
 
   nativeBuildInputs = [ makeWrapper ];