Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
Showing only changes of commit 1e52075c18 - Show all commits

View File

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