qalculate-gtk is now in nixpkgs!

This commit is contained in:
Gabriel Ebner 2015-09-03 10:41:10 +02:00
parent 27c3019a27
commit ebce9dd9bd
2 changed files with 1 additions and 22 deletions

View File

@ -49,6 +49,7 @@
firefoxWrapper
chromium
thunderbird
qalculate-gtk
viewnior
gnupg
pass xclip pwgen

View File

@ -1,22 +0,0 @@
# { stdenv, fetchurl, cln, libxml2, glib, intltool, pkgconfig }:
with import <nixpkgs> {};
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 = {
description = "The ultimate desktop calculator";
homepage = http://qalculate.sourceforge.net;
maintainers = [ stdenv.lib.maintainers.gebner ];
platforms = stdenv.lib.platforms.all;
};
}