forked from mirrors/nixpkgs
qalculate-gtk: init at 0.9.7
This commit is contained in:
parent
c839c988f4
commit
6b42cd852a
20
pkgs/applications/science/math/qalculate-gtk/default.nix
Normal file
20
pkgs/applications/science/math/qalculate-gtk/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, intltool, pkgconfig, libqalculate, gtk, gnome2 }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qalculate-gtk-${version}";
|
||||
version = "0.9.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/qalculate/${name}.tar.gz";
|
||||
sha256 = "0b986x5yny9vrzgxlbyg80b23mxylxv2zz8ppd9svhva6vi8xsm4";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ intltool pkgconfig ];
|
||||
buildInputs = [ libqalculate gtk gnome2.libglade gnome2.libgnome gnome2.scrollkeeper ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The ultimate desktop calculator";
|
||||
homepage = http://qalculate.sourceforge.net;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -2785,6 +2785,8 @@ let
|
|||
|
||||
ocz-ssd-guru = callPackage ../tools/misc/ocz-ssd-guru { };
|
||||
|
||||
qalculate-gtk = callPackage ../applications/science/math/qalculate-gtk { };
|
||||
|
||||
qastools = callPackage ../tools/audio/qastools {
|
||||
qt = qt4;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue