mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-14 22:04:27 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, coreutils
|
|
, tcl-8_6
|
|
, tcllib
|
|
, installShellFiles
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "xfs_undelete";
|
|
version = "unstable-2023-04-12";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "xfs_undelete";
|
|
owner = "ianka";
|
|
rev = "9e2f7abf0d3a466328e335d251c567ce4194e473";
|
|
hash = "sha256-ENa/r3+o7abW8iun6V/2LhTVmFVSwVM6v46KXBcKJ1g=";
|
|
};
|
|
|
|
buildInputs = [ tcl-8_6 tcllib coreutils ];
|
|
nativeBuildInputs = [ makeWrapper tcl-8_6.tclPackageHook installShellFiles ];
|
|
|
|
tclWrapperArgs = [ "--prefix" "PATH" ":" (lib.makeBinPath [ tcl-8_6 ]) ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm555 xfs_undelete -t $out/bin
|
|
mv xfs_undelete.man xfs_undelete.8
|
|
installManPage xfs_undelete.8
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Undelete tool for the XFS filesystem";
|
|
mainProgram = "xfs_undelete";
|
|
homepage = "https://github.com/ianka/xfs_undelete";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.deepfire ];
|
|
};
|
|
}
|