nixpkgs/pkgs/by-name/zf/zfsnap/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

44 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, coreutils, installShellFiles }:
stdenv.mkDerivation rec {
version = "2.0.0-beta3";
pname = "zfsnap";
src = fetchFromGitHub {
owner = "zfsnap";
repo = "zfsnap";
rev = "v${version}";
sha256 = "0670a5sghvqx32c9gfsird15mg9nqcvwxsrfcjrwc0sj7br9bd2g";
};
nativeBuildInputs = [ installShellFiles ];
postPatch = ''
# Use zfs binaries from PATH, because often the zfs package from nixpkgs is
# not the one that should be used
substituteInPlace share/zfsnap/core.sh \
--replace "ZFS_CMD='/sbin/zfs'" "ZFS_CMD='zfs'" \
--replace "ZPOOL_CMD='/sbin/zpool'" "ZPOOL_CMD='zpool'"
substituteInPlace sbin/zfsnap.sh \
--replace "/bin/ls" "${coreutils}/bin/ls"
'';
installPhase = ''
mkdir -p $out/bin
mv sbin/zfsnap.sh $out/bin/zfsnap
mv share $out
installManPage man/*/*
installShellCompletion completion/*.{bash,zsh}
'';
meta = with lib; {
description = "Portable, performant script to make rolling ZFS snapshots easy";
mainProgram = "zfsnap";
homepage = "https://github.com/zfsnap/zfsnap";
license = licenses.bsd3;
maintainers = with maintainers; [ woffs ];
platforms = platforms.linux;
};
}