2016-06-19 16:33:45 +01:00
|
|
|
{ stdenv, fetchurl, intltool, autoreconfHook, pkgconfig, libqalculate, gtk3, wrapGAppsHook }:
|
2016-07-09 12:11:02 +01:00
|
|
|
|
2015-08-31 18:20:03 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "qalculate-gtk-${version}";
|
2018-05-24 17:19:55 +01:00
|
|
|
version = "2.5.0";
|
2015-08-31 18:20:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-19 16:33:45 +01:00
|
|
|
url = "https://github.com/Qalculate/qalculate-gtk/archive/v${version}.tar.gz";
|
2018-05-24 17:19:55 +01:00
|
|
|
sha256 = "1hwwsdk3mlzvg9fsnv0hpj0s1lfkhycwv3sx2yrjwffzphhmxs7a";
|
2015-08-31 18:20:03 +01:00
|
|
|
};
|
|
|
|
|
2017-07-31 16:29:18 +01:00
|
|
|
patchPhase = ''
|
2017-08-29 09:30:10 +01:00
|
|
|
substituteInPlace src/main.cc --replace 'getPackageDataDir().c_str()' \"$out/share\"
|
2017-07-31 16:29:18 +01:00
|
|
|
'';
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 16:16:52 +00:00
|
|
|
|
2016-06-19 16:33:45 +01:00
|
|
|
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";
|
2016-06-19 16:33:45 +01:00
|
|
|
homepage = http://qalculate.github.io;
|
2015-08-31 18:20:03 +01:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|