Files
nixpkgs/pkgs/development/tools/misc/libwhich/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

26 lines
558 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libwhich";
version = "1.2.0";
src = fetchFromGitHub {
owner = "vtjnash";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JNIWdI12sL3TZqVA3GeH0KbgqFDbMsEdecea3392Goc=";
};
installPhase = ''
install -Dm755 -t $out/bin libwhich
'';
meta = with lib; {
description = "Like `which`, for dynamic libraries";
mainProgram = "libwhich";
homepage = "https://github.com/vtjnash/libwhich";
license = licenses.mit;
maintainers = [ ];
};
}