nixpkgs/pkgs/applications/misc/diffuse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.5 KiB
Nix
Raw Normal View History

2022-06-22 15:55:51 +00:00
{ lib, gitUpdater
, fetchFromGitHub
, meson
, ninja
, gettext
, wrapGAppsHook3
2022-06-22 15:55:51 +00:00
, gobject-introspection
, pango
, gdk-pixbuf
, python3
, atk
2022-10-24 13:04:04 +00:00
, gtk3
2024-01-29 22:51:01 +00:00
, hicolor-icon-theme
2022-06-22 15:55:51 +00:00
}:
python3.pkgs.buildPythonApplication rec {
pname = "diffuse";
2024-01-21 17:02:07 +00:00
version = "0.9.0";
2022-06-22 15:55:51 +00:00
src = fetchFromGitHub {
owner = "MightyCreak";
repo = "diffuse";
rev = "v${version}";
2024-01-21 17:02:07 +00:00
sha256 = "6GdUtdVhhIQL1cD9/e7Byv37PVKXmzVWhJC6GROK7OA=";
2022-06-22 15:55:51 +00:00
};
format = "other";
nativeBuildInputs = [
wrapGAppsHook3
2022-06-22 15:55:51 +00:00
meson
ninja
gettext
gobject-introspection
];
buildInputs = [
pango
gdk-pixbuf
atk
2022-10-24 13:04:04 +00:00
gtk3
2022-06-22 15:55:51 +00:00
];
propagatedBuildInputs = with python3.pkgs; [
pycairo
pygobject3
];
2023-02-03 20:57:20 +00:00
preConfigure = ''
# app bundle for macos
substituteInPlace src/diffuse/meson.build data/icons/meson.build src/diffuse/mac-os-app/diffuse-mac.in --replace-fail "/Applications" "$out/Applications";
2023-02-03 20:57:20 +00:00
'';
2022-06-22 15:55:51 +00:00
mesonFlags = [
"-Db_ndebug=true"
];
# to avoid running gtk-update-icon-cache, update-desktop-database and glib-compile-schemas
DESTDIR = "/";
2024-01-29 22:51:01 +00:00
makeWrapperArgs = [
"--prefix XDG_DATA_DIRS : ${hicolor-icon-theme}/share"
];
2022-06-22 15:55:51 +00:00
passthru = {
updateScript = gitUpdater {
rev-prefix = "v";
};
};
meta = with lib; {
homepage = "https://github.com/MightyCreak/diffuse";
description = "Graphical tool for merging and comparing text files";
mainProgram = "diffuse";
2022-06-22 15:55:51 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ k3a ];
2023-02-03 20:57:20 +00:00
platforms = platforms.unix;
2022-06-22 15:55:51 +00:00
};
}