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}";
|
2017-07-31 16:29:18 +01:00
|
|
|
version = "1.0.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";
|
2017-07-31 16:29:18 +01:00
|
|
|
sha256 = "08sg6kfcfdpxjsl538ba26ncm2cxzc63nlafj99ff4b46wxia57k";
|
2015-08-31 18:20:03 +01:00
|
|
|
};
|
|
|
|
|
2017-07-31 16:29:18 +01:00
|
|
|
patchPhase = ''
|
|
|
|
for fn in src/interface.cc src/main.cc; do
|
|
|
|
substituteInPlace $fn --replace 'getPackageDataDir().c_str()' \"$out/share\"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
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 ];
|
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;
|
|
|
|
};
|
|
|
|
}
|