1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00

Merge pull request #58079 from dtzWill/feature/libwhich

libwhich: init at 2019-03-20
This commit is contained in:
Will Dietz 2019-03-22 12:59:14 -05:00 committed by GitHub
commit 309e095d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libwhich";
version = "2019-03-20";
src = fetchFromGitHub {
owner = "vtjnash";
repo = pname;
rev = "b348872107c77cba50b60475aa8ce2ddba86aac0";
sha256 = "0fd8hsdc9b9v83j89mxvisgrz77q9rlxnbzd6j63wq66h95r02r9";
};
installPhase = ''
install -Dm755 -t $out/bin libwhich
'';
meta = with stdenv.lib; {
description = "Like `which`, for dynamic libraries";
homepage = https://github.com/vtjnash/libwhich;
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -8961,6 +8961,8 @@ in
libtool_2 = callPackage ../development/tools/misc/libtool/libtool2.nix { };
libwhich = callPackage ../development/tools/misc/libwhich { };
linuxkit = callPackage ../development/tools/misc/linuxkit { };
lit = callPackage ../development/tools/misc/lit { };