summary refs log tree commit diff
path: root/pkgs/applications/science/math/speedcrunch/default.nix
blob: 56ae454831b17916121570a3c0ead5031de215d4 (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
{ stdenv, fetchurl, qt, cmake }:

stdenv.mkDerivation rec {
  name = "speedcrunch-${version}";
  version = "0.11";

  src = fetchurl {
    url = "https://bitbucket.org/heldercorreia/speedcrunch/get/${version}.tar.gz";
    sha256 = "0phba14z9jmbmax99klbxnffwzv3awlzyhpcwr1c9lmyqnbcsnkd";
  };

  buildInputs = [cmake qt];

  dontUseCmakeBuildDir = true;

  cmakeDir = "src";

  meta = with stdenv.lib; {
    homepage    = http://speedcrunch.org;
    license     = 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.
    '';
    maintainers = with maintainers; [ gebner ];
    platforms = platforms.all;
  };

}