Merge pull request #41517 from alexfmpe/init-dylibbundler

dylibbundler: init
This commit is contained in:
Matthew Justin Bauer 2018-06-08 10:03:48 -04:00 committed by GitHub
commit 622c997ffd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -1176,6 +1176,8 @@ with pkgs;
duperemove = callPackage ../tools/filesystems/duperemove { };
dylibbundler = callPackage ../tools/misc/dylibbundler { };
dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
dyncall = callPackage ../development/libraries/dyncall { };