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

31 lines
864 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";
version = "3.0.0";
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}";
sha256 = "00q6y9dgg9wgpgks79snbipn8alfjajlx02a5hm7wl9a20zd0b81";
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";
homepage = http://qalculate.github.io;
2015-08-31 18:20:03 +01:00
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}