nixpkgs/pkgs/by-name/dd/dduper/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

51 lines
1.3 KiB
Nix

{ lib, stdenv, fetchpatch, fetchFromGitHub, btrfs-progs, python3 }:
let
btrfsProgsPatched = btrfs-progs.overrideAttrs {
patches = [
(fetchpatch {
url = "https://raw.githubusercontent.com/Lakshmipathi/dduper/1f1d29eff61430e118f88239545a29f0bcf3e15d/patch/btrfs-progs-v6.3.3/0001-Print-csum-for-a-given-file-on-stdout.patch";
hash = "sha256-bO0t8QePnUbMkQQPesZlBF/khD/H8AaWHr2GkOnT6x8=";
})
];
};
py3 = python3.withPackages (ps: with ps; [
prettytable
numpy
]);
in
stdenv.mkDerivation rec {
pname = "dduper";
version = "0.04";
src = fetchFromGitHub {
owner = "lakshmipathi";
repo = "dduper";
rev = "v${version}";
sha256 = "09ncdawxkffldadqhfblqlkdl05q2qmywxyg6p61fv3dr2f2v5wm";
};
buildInputs = [
btrfsProgsPatched
py3
];
patchPhase = ''
substituteInPlace ./dduper --replace "/usr/sbin/btrfs.static" "${btrfsProgsPatched}/bin/btrfs"
'';
installPhase = ''
mkdir -p $out/bin
install -m755 ./dduper $out/bin
'';
meta = with lib; {
description = "Fast block-level out-of-band BTRFS deduplication tool";
mainProgram = "dduper";
homepage = "https://github.com/Lakshmipathi/dduper";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ thesola10 ];
platforms = platforms.linux;
};
}