nixpkgs/pkgs/applications/science/math/speedcrunch/default.nix
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00

39 lines
1.0 KiB
Nix

{ 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 = 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.
'';
};
}