mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +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
|
withCuda ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "firestarter";
|
pname = "firestarter";
|
||||||
version = "1.7.3";
|
version = "1.7.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tud-zih-energy";
|
owner = "tud-zih-energy";
|
||||||
repo = "FIRESTARTER";
|
repo = "FIRESTARTER";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1gc7kmzx9nw22lyfmpyz72p974jf1hvw5nvszcaq7x6h8cz9ip15";
|
sha256 = "161mg0h1hvp6bxfjdhyfqrljvphys896mfd36254rbgzxm38ibi7";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ python3 ];
|
nativeBuildInputs = [ python3 ];
|
||||||
buildInputs = optionals withCuda [ cudatoolkit ];
|
buildInputs = [ glibc.static ] ++ optionals withCuda [ cudatoolkit ];
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
|
Loading…
Reference in New Issue
Block a user