summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2021-12-31 10:36:06 +0100
committerGitHub <noreply@github.com>2021-12-31 10:36:06 +0100
commit5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec (patch)
tree004ffbab385fecc727f4661e5bcda0f598437d0d /pkgs/applications/science
parent0d9c34ee3f34820623afe41b995565c495933294 (diff)
parente3d982dfee3b625bca4e42b34224bb7606190f17 (diff)
downloadnixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.tar
nixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.tar.gz
nixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.tar.bz2
nixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.tar.lz
nixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.tar.xz
nixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.tar.zst
nixpkgs-5fcfc1d34a09a5308a4e4bdfb61f07cf3bf488ec.zip
Merge pull request #152605 from j0hax/speedcrunch-fixups
Speedcrunch fixups
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/speedcrunch/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/science/math/speedcrunch/default.nix b/pkgs/applications/science/math/speedcrunch/default.nix
index 4bb39ab73f5..a4e15060fe3 100644
--- a/pkgs/applications/science/math/speedcrunch/default.nix
+++ b/pkgs/applications/science/math/speedcrunch/default.nix
@@ -1,14 +1,14 @@
-{ mkDerivation, lib, fetchgit, cmake, qtbase, qttools }:
+{ mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }:
 
 mkDerivation rec {
   pname = "speedcrunch";
-  version = "0.12.0";
+  version = "unstable-2021-10-09";
 
-  src = fetchgit {
-    # the tagging is not standard, so you probably need to check this when updating
-    rev = "refs/tags/release-${version}";
-    url = "https://bitbucket.org/heldercorreia/speedcrunch";
-    sha256 = "0vh7cd1915bjqzkdp3sk25ngy8cq624mkh8c53c5bnzk357kb0fk";
+  src = fetchFromBitbucket {
+    owner = "heldercorreia";
+    repo = pname;
+    rev = "74756f3438149c01e9edc3259b0f411fa319a22f";
+    sha256 = "sha256-XxQv+A5SfYXFIRK7yacxGHHne1Q93pwCGeHhchIKizU=";
   };
 
   buildInputs = [ qtbase qttools ];
@@ -29,7 +29,7 @@ mkDerivation rec {
       precisions, unlimited variable storage, intelligent automatic completion
       full keyboard-friendly and more than 15 built-in math function.
     '';
-    maintainers = with maintainers; [ gebner ];
+    maintainers = with maintainers; [ gebner j0hax ];
     inherit (qtbase.meta) platforms;
     # works with qt 5.6 and qt 5.8
     broken = builtins.compareVersions qtbase.version "5.7.0" == 0;