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" ]; }