3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/math/qalculate-gtk/default.nix

31 lines
867 B
Nix
Raw Normal View History

2018-07-05 11:33:13 +01:00
{ stdenv, fetchFromGitHub, intltool, autoreconfHook, pkgconfig, libqalculate, gtk3, wrapGAppsHook }:
2015-08-31 18:20:03 +01:00
stdenv.mkDerivation rec {
pname = "qalculate-gtk";
2020-04-07 11:29:32 +01:00
version = "3.8.0a";
2015-08-31 18:20:03 +01:00
2018-07-05 11:33:13 +01:00
src = fetchFromGitHub {
owner = "qalculate";
repo = "qalculate-gtk";
rev = "v${version}";
2020-04-07 11:29:32 +01:00
sha256 = "0bjd61bbc5b2i09kz3ss01c0xmxrhmiv5wpbhhplkp3yhw2qrf3m";
2015-08-31 18:20:03 +01:00
};
patchPhase = ''
2017-08-29 09:30:10 +01:00
substituteInPlace src/main.cc --replace 'getPackageDataDir().c_str()' \"$out/share\"
'';
hardeningDisable = [ "format" ];
nativeBuildInputs = [ intltool pkgconfig autoreconfHook wrapGAppsHook ];
buildInputs = [ libqalculate gtk3 ];
2017-08-29 09:30:10 +01:00
enableParallelBuilding = true;
2015-08-31 18:20:03 +01:00
meta = with stdenv.lib; {
description = "The ultimate desktop calculator";
2020-03-08 00:14:22 +00:00
homepage = "http://qalculate.github.io";
2015-08-31 18:20:03 +01:00
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}