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

29 lines
865 B
Nix
Raw Normal View History

{ stdenv, fetchurl, intltool, autoreconfHook, pkgconfig, libqalculate, gtk3, wrapGAppsHook }:
2015-08-31 17:20:03 +00:00
stdenv.mkDerivation rec {
name = "qalculate-gtk-${version}";
2018-02-24 10:54:53 +00:00
version = "2.2.1";
2015-08-31 17:20:03 +00:00
src = fetchurl {
url = "https://github.com/Qalculate/qalculate-gtk/archive/v${version}.tar.gz";
2018-02-24 10:54:53 +00:00
sha256 = "0sf4ywz8hsszaf0yr0ncdlp7mwjk6b276bwl0j9vf1j925c89pbn";
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;
};
}