summary refs log tree commit diff
path: root/pkgs/applications/misc/firestarter
diff options
context:
space:
mode:
authorAstro <astro@spaceboyz.net>2019-10-31 00:13:15 +0100
committerAstro <astro@spaceboyz.net>2019-10-31 00:13:42 +0100
commit0757b205de8e2c1c17fcd624e54c6d558ca19453 (patch)
tree6ca3c87a81eac5a72e9039e8a5ad7662ea5a51bd /pkgs/applications/misc/firestarter
parent17da09c2fad71da876d039e743404a8ec031943f (diff)
downloadnixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.tar
nixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.tar.gz
nixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.tar.bz2
nixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.tar.lz
nixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.tar.xz
nixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.tar.zst
nixpkgs-0757b205de8e2c1c17fcd624e54c6d558ca19453.zip
firestarter: 1.7.3 -> 1.7.4
Diffstat (limited to 'pkgs/applications/misc/firestarter')
-rw-r--r--pkgs/applications/misc/firestarter/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/firestarter/default.nix b/pkgs/applications/misc/firestarter/default.nix
index e93d0ab69a7..82bcf5a4aa0 100644
--- a/pkgs/applications/misc/firestarter/default.nix
+++ b/pkgs/applications/misc/firestarter/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, fetchFromGitHub, python3, cudatoolkit,
+{ stdenv, fetchFromGitHub, glibc, python3, cudatoolkit,
   withCuda ? true
 }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
   pname = "firestarter";
-  version = "1.7.3";
+  version = "1.7.4";
 
   src = fetchFromGitHub {
     owner = "tud-zih-energy";
     repo = "FIRESTARTER";
     rev = "v${version}";
-    sha256 = "1gc7kmzx9nw22lyfmpyz72p974jf1hvw5nvszcaq7x6h8cz9ip15";
+    sha256 = "161mg0h1hvp6bxfjdhyfqrljvphys896mfd36254rbgzxm38ibi7";
   };
 
   nativeBuildInputs = [ python3 ];
-  buildInputs = optionals withCuda [ cudatoolkit ];
+  buildInputs = [ glibc.static ] ++ optionals withCuda [ cudatoolkit ];
   preBuild = ''
     mkdir -p build
     cd build