qalculate-gtk: init at 0.9.7

+22
+20
pkgs/applications/science/math/qalculate-gtk/default.nix
··· 1 + { stdenv, fetchurl, intltool, pkgconfig, libqalculate, gtk, gnome2 }: 2 + stdenv.mkDerivation rec { 3 + name = "qalculate-gtk-${version}"; 4 + version = "0.9.7"; 5 + 6 + src = fetchurl { 7 + url = "mirror://sourceforge/qalculate/${name}.tar.gz"; 8 + sha256 = "0b986x5yny9vrzgxlbyg80b23mxylxv2zz8ppd9svhva6vi8xsm4"; 9 + }; 10 + 11 + nativeBuildInputs = [ intltool pkgconfig ]; 12 + buildInputs = [ libqalculate gtk gnome2.libglade gnome2.libgnome gnome2.scrollkeeper ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "The ultimate desktop calculator"; 16 + homepage = http://qalculate.sourceforge.net; 17 + maintainers = with maintainers; [ gebner ]; 18 + platforms = platforms.all; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 2785 2785 2786 2786 ocz-ssd-guru = callPackage ../tools/misc/ocz-ssd-guru { }; 2787 2787 2788 + qalculate-gtk = callPackage ../applications/science/math/qalculate-gtk { }; 2789 + 2788 2790 qastools = callPackage ../tools/audio/qastools { 2789 2791 qt = qt4; 2790 2792 };