nixpkgs/pkgs/by-name/tr/try/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
868 B
Nix
Raw Permalink Normal View History

2023-06-24 16:55:31 -06:00
{ stdenvNoCC, lib, fetchFromGitHub, fuse-overlayfs, util-linux, makeWrapper }:
stdenvNoCC.mkDerivation rec {
pname = "try";
2023-09-03 01:18:06 -06:00
version = "0.2.0";
2023-06-24 16:55:31 -06:00
src = fetchFromGitHub {
owner = "binpash";
repo = pname;
rev = "v${version}";
2023-09-03 01:18:06 -06:00
hash = "sha256-2EDRVwW4XzQhd7rAM2rDuR94Fkaq4pH5RTooFEBBh5g=";
2023-06-24 16:55:31 -06:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
install -Dt $out/bin try
wrapProgram $out/bin/try --prefix PATH : ${lib.makeBinPath [ fuse-overlayfs util-linux ]}
runHook postInstall
'';
meta = with lib;{
2023-11-06 15:36:33 -07:00
homepage = "https://github.com/binpash/try";
2023-06-24 16:55:31 -06:00
description = "Lets you run a command and inspect its effects before changing your live system";
mainProgram = "try";
2023-06-24 16:55:31 -06:00
maintainers = with maintainers; [ pasqui23 ];
license = with licenses; [ mit ];
platforms = platforms.linux;
};
}