mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
firestarter: 1.7.3 -> 1.7.4
This commit is contained in:
parent
17da09c2fa
commit
0757b205de
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user