mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
speedcrunch: new package
speedcrunch is a fast power user calculator.
This commit is contained in:
parent
36fca94805
commit
6371fd0908
38
pkgs/applications/science/math/speedcrunch/default.nix
Normal file
38
pkgs/applications/science/math/speedcrunch/default.nix
Normal file
@ -0,0 +1,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 = {
|
||||||
|
homepage = "http://speedcrunch.digitalfanatics.org";
|
||||||
|
license = "GPLv2+";
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
diff -up speedcrunch-0.11-alpha/src/CMakeLists.txt.dso_linking speedcrunch-0.11-alpha/src/CMakeLists.txt
|
||||||
|
--- speedcrunch-0.11-alpha/src/CMakeLists.txt.dso_linking 2009-11-04 15:37:15.000000000 -0600
|
||||||
|
+++ speedcrunch-0.11-alpha/src/CMakeLists.txt 2010-06-25 13:25:07.133460528 -0500
|
||||||
|
@@ -54,6 +54,10 @@ ENDIF(CMAKE_COMPILER_IS_GNUCXX )
|
||||||
|
SET(QT_USE_QTNETWORK TRUE)
|
||||||
|
#SET(QT_USE_QTXML TRUE)
|
||||||
|
find_package(Qt4 REQUIRED)
|
||||||
|
+if (Q_WS_X11)
|
||||||
|
+ find_package(X11 REQUIRED)
|
||||||
|
+endif (Q_WS_X11)
|
||||||
|
+
|
||||||
|
include(${QT_USE_FILE})
|
||||||
|
|
||||||
|
# build everything
|
||||||
|
@@ -80,7 +84,7 @@ ENDIF( APPLE )
|
||||||
|
|
||||||
|
ADD_CUSTOM_TARGET( confclean COMMAND rm -rf Makefile CMakeFiles/ CMakeCache.txt cmake_install.cmake DartTestfile.txt install_manifest.txt )
|
||||||
|
|
||||||
|
-TARGET_LINK_LIBRARIES(${PROGNAME} ${QT_LIBRARIES})
|
||||||
|
+TARGET_LINK_LIBRARIES(${PROGNAME} ${QT_LIBRARIES} ${X11_X11_LIB} )
|
||||||
|
# only needed for static builds when directx is enabled in qt and you
|
||||||
|
# get a linker error because of missing a directx function
|
||||||
|
#IF(WIN32)
|
@ -9709,6 +9709,11 @@ let
|
|||||||
|
|
||||||
yacas = callPackage ../applications/science/math/yacas { };
|
yacas = callPackage ../applications/science/math/yacas { };
|
||||||
|
|
||||||
|
speedcrunch = callPackage ../applications/science/math/speedcrunch {
|
||||||
|
qt = qt4;
|
||||||
|
cmake = cmakeCurses;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
### SCIENCE / MISC
|
### SCIENCE / MISC
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user