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 10:20:03 -07:00
stdenv.mkDerivation rec {
name = "qalculate-gtk-${version}";
2018-05-24 09:19:55 -07:00
version = "2.5.0";
2015-08-31 10:20:03 -07:00
src = fetchurl {
url = "https://github.com/Qalculate/qalculate-gtk/archive/v${version}.tar.gz";
2018-05-24 09:19:55 -07:00
sha256 = "1hwwsdk3mlzvg9fsnv0hpj0s1lfkhycwv3sx2yrjwffzphhmxs7a";
2015-08-31 10:20:03 -07:00
};
patchPhase = ''
2017-08-29 01:30:10 -07:00
substituteInPlace src/main.cc --replace 'getPackageDataDir().c_str()' \"$out/share\"
'';
hardeningDisable = [ "format" ];
nativeBuildInputs = [ intltool pkgconfig autoreconfHook wrapGAppsHook ];
buildInputs = [ libqalculate gtk3 ];
2017-08-29 01:30:10 -07:00
enableParallelBuilding = true;
2015-08-31 10:20:03 -07:00
meta = with stdenv.lib; {
description = "The ultimate desktop calculator";
homepage = http://qalculate.github.io;
2015-08-31 10:20:03 -07:00
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}