nixpkgs/pkgs/tools/system/hardlink/default.nix

34 lines
904 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pcre2 }:
2017-11-01 14:08:25 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "hardlink";
2017-11-01 14:08:25 +00:00
version = "1.3-4";
2012-09-25 13:35:54 +00:00
src = fetchurl {
url = "https://src.fedoraproject.org/cgit/rpms/hardlink.git/snapshot/hardlink-aa6325ac4e8100b8ac7d38c7f0bc2708e69bd855.tar.xz";
2017-11-01 14:08:25 +00:00
sha256 = "0g4hyrnd9hpykbf06qvvp3s4yyk7flbd95gilkf7r3w9vqiagvs2";
2012-09-25 13:35:54 +00:00
};
2017-11-01 14:08:25 +00:00
buildInputs = [ pcre2 ];
NIX_CFLAGS_LINK = "-lpcre2-8";
buildPhase = ''
$CC -O2 hardlink.c -o hardlink $NIX_CFLAGS_LINK
'';
2012-09-25 13:35:54 +00:00
installPhase = ''
mkdir -p $out/bin $out/share/man/man1
2017-11-01 14:08:25 +00:00
cp -f hardlink $out/bin/hardlink
cp -f hardlink.1 $out/share/man/man1/hardlink.1
'';
meta = with lib; {
description = "Consolidate duplicate files via hardlinks";
homepage = "https://pagure.io/hardlink";
repositories.git = "https://src.fedoraproject.org/cgit/rpms/hardlink.git";
2017-11-01 14:08:25 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}