nixpkgs/pkgs/applications/science/math/speedcrunch/default.nix

33 lines
958 B
Nix
Raw Normal View History

{ stdenv, fetchurl, qt, cmake }:
stdenv.mkDerivation rec {
2016-06-19 16:44:32 +00:00
name = "speedcrunch-${version}";
version = "0.11";
src = fetchurl {
2016-06-19 16:44:32 +00:00
url = "https://bitbucket.org/heldercorreia/speedcrunch/get/${version}.tar.gz";
sha256 = "0phba14z9jmbmax99klbxnffwzv3awlzyhpcwr1c9lmyqnbcsnkd";
};
buildInputs = [cmake qt];
dontUseCmakeBuildDir = true;
2016-06-19 16:44:32 +00:00
cmakeDir = "src";
meta = with stdenv.lib; {
2016-06-19 16:44:32 +00:00
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.
'';
2016-06-19 16:44:32 +00:00
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}