summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-06-08 10:03:48 -0400
committerGitHub <noreply@github.com>2018-06-08 10:03:48 -0400
commit622c997ffdf65f3549027691e518ca98b8af78c9 (patch)
treec295875ed0dabe51e877c237cc523b2f02738b5f /pkgs/tools/misc
parent3dbd6e45b9f2519b99906916c4528d4bfa13e6b4 (diff)
parentc7520b66702b726e12bc292d1efd56730901735d (diff)
downloadnixlib-622c997ffdf65f3549027691e518ca98b8af78c9.tar
nixlib-622c997ffdf65f3549027691e518ca98b8af78c9.tar.gz
nixlib-622c997ffdf65f3549027691e518ca98b8af78c9.tar.bz2
nixlib-622c997ffdf65f3549027691e518ca98b8af78c9.tar.lz
nixlib-622c997ffdf65f3549027691e518ca98b8af78c9.tar.xz
nixlib-622c997ffdf65f3549027691e518ca98b8af78c9.tar.zst
nixlib-622c997ffdf65f3549027691e518ca98b8af78c9.zip
Merge pull request #41517 from alexfmpe/init-dylibbundler
dylibbundler: init
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/dylibbundler/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/misc/dylibbundler/default.nix b/pkgs/tools/misc/dylibbundler/default.nix
new file mode 100644
index 000000000000..c88e29bb4553
--- /dev/null
+++ b/pkgs/tools/misc/dylibbundler/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "dylibbundler";
+
+  src  = fetchFromGitHub {
+    owner  = "auriamg";
+    repo   = "/macdylibbundler";
+    rev    = "27923fbf6d1bc4d18c18e118280c4fe51fc41a80";
+    sha256 = "1mpd43hvpfp7pskfrjnd6vcmfii9v3p97q0ws50krkdvshp0bv2h";
+  };
+
+  makeFlags = "PREFIX=$(out)";
+
+  meta = with stdenv.lib; {
+    description = "Small command-line program that aims to make bundling .dylibs as easy as possible";
+    homepage    = "https://github.com/auriamg/macdylibbundler";
+    license     = licenses.mit;
+    maintainers = with maintainers; [ alexfmpe ];
+    platforms   = with platforms; darwin ++ linux;
+  };
+}