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

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

74 lines
1.3 KiB
Nix
Raw Normal View History

2022-06-22 15:55:51 +00:00
{ lib, gitUpdater
, fetchFromGitHub
, meson
, ninja
, gettext
, wrapGAppsHook
, gobject-introspection
, pango
, gdk-pixbuf
, python3
, atk
2022-10-24 13:04:04 +00:00
, gtk3
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 = [
wrapGAppsHook
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 --replace "/Applications" "$out/Applications";
'';
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 = "/";
passthru = {
updateScript = gitUpdater {
rev-prefix = "v";
};
};
meta = with lib; {
homepage = "https://github.com/MightyCreak/diffuse";
description = "Graphical tool for merging and comparing text files";
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
};
}