Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.7 KiB
Nix
78 lines
1.7 KiB
Nix
{
|
|
copyDesktopItems,
|
|
fetchurl,
|
|
lib,
|
|
makeDesktopItem,
|
|
stdenv,
|
|
tcl,
|
|
tk,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dirdiff";
|
|
version = "2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/paulus/dirdiff-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-yzc2VNV4gCeAQ1XjVd8GlYYsO/wfaj/GAUcisxVqklI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ copyDesktopItems ];
|
|
buildInputs = [
|
|
tcl
|
|
tk
|
|
];
|
|
|
|
# Some light path patching.
|
|
patches = [ ./dirdiff-2.1-vars.patch ];
|
|
postPatch = ''
|
|
for file in dirdiff Makefile; do
|
|
substituteInPlace "$file" \
|
|
--subst-var out \
|
|
--subst-var-by tcl ${tcl} \
|
|
--subst-var-by tk ${tk}
|
|
done
|
|
|
|
sed -i "1i #include <unistd.h>" filecmp.c
|
|
'';
|
|
|
|
env = {
|
|
NIX_CFLAGS_COMPILE = "-DUSE_INTERP_RESULT";
|
|
NIX_LDFLAGS = "-ltcl";
|
|
};
|
|
|
|
# If we don't create the directories ourselves, then 'make install' creates
|
|
# files named 'bin' and 'lib'.
|
|
preInstall = ''
|
|
mkdir -p $out/bin $out/lib
|
|
'';
|
|
|
|
installFlags = [
|
|
"BINDIR=${placeholder "out"}/bin"
|
|
"LIBDIR=${placeholder "out"}/lib"
|
|
];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "dirdiff";
|
|
exec = "dirdiff";
|
|
desktopName = "Dirdiff";
|
|
genericName = "Directory Diff Viewer";
|
|
comment = "Diff and merge directory trees";
|
|
categories = [ "Development" ];
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
description = "Graphical directory tree diff and merge tool";
|
|
mainProgram = "dirdiff";
|
|
longDescription = ''
|
|
Dirdiff is a graphical tool for displaying the differences between
|
|
directory trees and for merging changes from one tree into another.
|
|
'';
|
|
homepage = "https://www.samba.org/ftp/paulus/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|