summary refs log tree commit diff
path: root/pkgs/applications/science/math/speedcrunch/default.nix
blob: e2f34d48de27cf89e285183c2c70b31e0cad9ff9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchurl, qt, cmake }:

stdenv.mkDerivation rec {
  name = "speedcrunch-0.11-alpha";

  src = fetchurl {
    url = "http://speedcrunch.googlecode.com/files/${name}.tar.gz";
    sha256 = "c6d6328e0c018cd8b98a0e86fb6c49fedbab5dcc831b47fbbc1537730ff80882";
  };

  patches = [./speedcrunch-0.11-alpha-dso_linking.patch];

  buildInputs = [cmake qt];

  dontUseCmakeBuildDir = true;

  cmakeDir = "../src";

  preConfigure = ''
    mkdir -p build
    cd build
  '';

  buildFlags = "VERBOSE=1";

  meta = with stdenv.lib; {
    homepage    = "http://speedcrunch.digitalfanatics.org";
    license     = with licenses; gpl2Plus;
    description = "A fast power user calculator";
    longDescription = ''
      SpeedCrunch is a fast, high precision and powerful desktop calculator.
      Among its distinctive features are a scrollable display, up to 50 decimal
      precisions, unlimited variable storage, intelligent automatic completion
      full keyboard-friendly and more than 15 built-in math function.
    '';
  };

}