73a12c0403
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/duperemove/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/mcgis270lv4waah1f68insh0n8j7ja52-duperemove-0.11/bin/btrfs-extent-same had a zero exit code or showed the expected version - /nix/store/mcgis270lv4waah1f68insh0n8j7ja52-duperemove-0.11/bin/duperemove passed the binary check. - /nix/store/mcgis270lv4waah1f68insh0n8j7ja52-duperemove-0.11/bin/hashstats passed the binary check. - /nix/store/mcgis270lv4waah1f68insh0n8j7ja52-duperemove-0.11/bin/show-shared-extents passed the binary check. - 2 of 4 passed binary check by having a zero exit code. - 2 of 4 passed binary check by having the new version present in output. - found 0.11 with grep in /nix/store/mcgis270lv4waah1f68insh0n8j7ja52-duperemove-0.11 - directory tree listing: https://gist.github.com/0df1e551a8c77ca4dd4bb8f2783f75c4 - du listing: https://gist.github.com/4dc88fc1b6adba1caf3a67e67383c3c9
28 lines
837 B
Nix
28 lines
837 B
Nix
{ stdenv, fetchFromGitHub, libgcrypt
|
|
, pkgconfig, glib, linuxHeaders ? stdenv.cc.libc.linuxHeaders, sqlite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "duperemove-${version}";
|
|
version = "0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markfasheh";
|
|
repo = "duperemove";
|
|
rev = "v${version}";
|
|
sha256 = "09bwpsvnppl9bm2l5pym5673x04ah3hddb0xip61gdq8ws3ri5yj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libgcrypt glib linuxHeaders sqlite ];
|
|
|
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A simple tool for finding duplicated extents and submitting them for deduplication";
|
|
homepage = https://github.com/markfasheh/duperemove;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ bluescreen303 thoughtpolice ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|