From 1e52075c18bd2cb01382b1d8afbdcd4928a9b944 Mon Sep 17 00:00:00 2001 From: Aleix Roca Nonell Date: Fri, 24 Nov 2023 15:22:57 +0100 Subject: [PATCH] TAGASPI 2023.11 update and move to public repo Reviewed-By: Rodrigo Arias Mallo --- pkgs/tagaspi/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/tagaspi/default.nix b/pkgs/tagaspi/default.nix index 71fba52..d9c7557 100644 --- a/pkgs/tagaspi/default.nix +++ b/pkgs/tagaspi/default.nix @@ -1,5 +1,6 @@ { stdenv +, fetchFromGitHub , automake , autoconf , libtool @@ -14,10 +15,17 @@ stdenv.mkDerivation rec { pname = "tagaspi"; - version = src.shortRev; enableParallelBuilding = true; separateDebugInfo = true; + version = "2.0"; + src = fetchFromGitHub { + owner = "bsc-pm"; + repo = "tagaspi"; + rev = "v${version}"; + hash = "sha256-RGG/Re2uM293HduZfGzKUWioDtwnSYYdfeG9pVrX9EM="; + }; + buildInputs = [ autoreconfHook automake @@ -38,11 +46,5 @@ stdenv.mkDerivation rec { "CXXFLAGS=-fPIC" ]; - src = builtins.fetchGit { - url = "ssh://git@bscpm03.bsc.es/interoperability/tagaspi"; - ref = "refs/tags/2021.11"; - rev = "5aabb1849de2e512cc8729f32783051ecd4cab97"; - }; - hardeningDisable = [ "all" ]; }