1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00
nixpkgs/pkgs/tools/text/zstxtns-utils/default.nix

40 lines
967 B
Nix
Raw Normal View History

{ coreutils
2021-03-04 22:30:33 +00:00
, fetchurl
, gnugrep
, lib
, makeWrapper
, moreutils
, stdenvNoCC
2021-03-04 22:30:33 +00:00
}:
stdenvNoCC.mkDerivation rec {
2021-03-04 22:30:33 +00:00
pname = "zstxtns-utils";
version = "0.0.3";
src = fetchurl {
url = "https://ytrizja.de/distfiles/zstxtns-utils-${version}.tar.gz";
sha256 = "I/Gm7vHUr29NClYWQ1kwu8HrNZpdLXfE/nutTNoqcdU=";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
install -D -t $out/bin zstxtns-merge zstxtns-unmerge
runHook postInstall
'';
postInstall = ''
wrapProgram $out/bin/zstxtns-merge --set PATH "${lib.makeBinPath [coreutils gnugrep moreutils]}"
wrapProgram $out/bin/zstxtns-unmerge --set PATH "${lib.makeBinPath [coreutils gnugrep]}"
2021-03-04 22:30:33 +00:00
'';
meta = with lib; {
description = "utilities to deal with text based name service databases";
homepage = "https://ytrizja.de/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ zseri ];
platforms = platforms.all;
};
}