TAGASPI 2023.11 update and move to public repo

Reviewed-By: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
This commit is contained in:
Aleix Roca Nonell 2023-11-24 15:22:57 +01:00 committed by Rodrigo Arias Mallo
parent 062b1c3c77
commit 1e52075c18

View File

@ -1,5 +1,6 @@
{ {
stdenv stdenv
, fetchFromGitHub
, automake , automake
, autoconf , autoconf
, libtool , libtool
@ -14,10 +15,17 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tagaspi"; pname = "tagaspi";
version = src.shortRev;
enableParallelBuilding = true; enableParallelBuilding = true;
separateDebugInfo = true; separateDebugInfo = true;
version = "2.0";
src = fetchFromGitHub {
owner = "bsc-pm";
repo = "tagaspi";
rev = "v${version}";
hash = "sha256-RGG/Re2uM293HduZfGzKUWioDtwnSYYdfeG9pVrX9EM=";
};
buildInputs = [ buildInputs = [
autoreconfHook autoreconfHook
automake automake
@ -38,11 +46,5 @@ stdenv.mkDerivation rec {
"CXXFLAGS=-fPIC" "CXXFLAGS=-fPIC"
]; ];
src = builtins.fetchGit {
url = "ssh://git@bscpm03.bsc.es/interoperability/tagaspi";
ref = "refs/tags/2021.11";
rev = "5aabb1849de2e512cc8729f32783051ecd4cab97";
};
hardeningDisable = [ "all" ]; hardeningDisable = [ "all" ];
} }