23 lines
682 B
Nix
23 lines
682 B
Nix
# { 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;
|
|
};
|
|
}
|