summary refs log tree commit diff
path: root/pkgs/applications/science/math/qalculate-gtk/default.nix
blob: 77026eb490a15fb493ef3e7a38575a7b08b49aaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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";
  };

  hardening_format = false;

  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;
  };
}