nixpkgs/pkgs/applications/science/math/qalculate-gtk/default.nix

31 lines
874 B
Nix
Raw Normal View History

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