2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, pcre2 }:
|
2012-01-30 11:40:20 +00:00
|
|
|
|
2017-11-01 14:08:25 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hardlink";
|
2017-11-01 14:08:25 +00:00
|
|
|
version = "1.3-4";
|
2012-01-30 11:40:20 +00:00
|
|
|
|
2012-09-25 14:35:54 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
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 14:35:54 +01:00
|
|
|
};
|
2012-01-30 11:40:20 +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 14:35:54 +01:00
|
|
|
installPhase = ''
|
2012-01-30 11:40:20 +00:00
|
|
|
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
|
2012-01-30 11:40:20 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Consolidate duplicate files via hardlinks";
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
2012-01-30 11:40:20 +00:00
|
|
|
};
|
|
|
|
}
|