58f8944c92
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, intltool, autoreconfHook, pkgconfig, libqalculate, gtk3, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qalculate-gtk";
|
|
version = "3.12.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qalculate";
|
|
repo = "qalculate-gtk";
|
|
rev = "v${version}";
|
|
sha256 = "0ylsxj9rn3dc1grn9w6jisci3ak0hxgbwzqp54azs3aj5cmvkfgg";
|
|
};
|
|
|
|
patchPhase = ''
|
|
# The gnome-search-provider2.c file generated by gdbus-codegen depends
|
|
# on gio-unix-2.0, which is a Requires.private of gtk+-3.0,
|
|
# and private dependencies are dropped in our default patched pkg-config.
|
|
# https://github.com/Qalculate/qalculate-gtk/pull/178
|
|
# https://github.com/NixOS/nixpkgs/issues/292
|
|
substituteInPlace configure.ac --replace 'libxml-2.0' 'libxml-2.0 gio-unix-2.0'
|
|
|
|
# https://github.com/Qalculate/qalculate-gtk/pull/179
|
|
echo searchprovider.o: gnome-search-provider2.c >>src/Makefile.am
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig autoreconfHook wrapGAppsHook ];
|
|
buildInputs = [ libqalculate gtk3 ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The ultimate desktop calculator";
|
|
homepage = "http://qalculate.github.io";
|
|
maintainers = with maintainers; [ gebner ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|