Archived
1
0
forked from rarias/bscpkgs

3 Commits

Author SHA1 Message Date
8a8c324cba Merge all branches 2025-09-26 12:49:37 +02:00
0c02ee9bd4 Add hydraJobs with tests and packages 2025-09-26 12:48:40 +02:00
e35b7100ed Clean up paraver derivations 2025-09-16 15:32:58 +02:00
3 changed files with 34 additions and 31 deletions

View File

@@ -14,9 +14,12 @@
bscOverlay = import ./overlay.nix;
overlays.default = self.bscOverlay;
# propagate nixpkgs lib, so we can do bscpkgs.lib
inherit (nixpkgs) lib;
# full nixpkgs with our overlay applied
legacyPackages.${system} = pkgs;
# packages added by our overlay
packages.${system} =
let
@@ -32,7 +35,9 @@
(filterAttrs (_: isDerivation))
];
# propagate nixpkgs lib, so we can do bscpkgs.lib
inherit (nixpkgs) lib;
};
hydraJobs = {
inherit (self.legacyPackages.x86_64-linux.bsc-ci) test;
packages = self.packages.${system};
};
};
}

View File

@@ -1,19 +1,18 @@
{
stdenv,
fetchFromGitHub,
autoreconfHook,
boost,
libxml2,
xml2,
wxGTK32,
autoconf,
automake,
paraverKernel,
openssl,
glibcLocales,
wrapGAppsHook,
{ stdenv
, fetchFromGitHub
, autoreconfHook
, boost
, libxml2
, xml2
, wxGTK32
, autoconf
, automake
, paraverKernel
, openssl
, glibcLocales
, wrapGAppsHook
enableDebug ? false,
, enableDebug ? false
}:
let

View File

@@ -1,16 +1,15 @@
{
stdenv,
fetchFromGitHub,
autoreconfHook,
boost,
libxml2,
xml2,
autoconf,
automake,
pkg-config,
zlib,
{ stdenv
, fetchFromGitHub
, autoreconfHook
, boost
, libxml2
, xml2
, autoconf
, automake
, pkg-config
, zlib
enableDebug ? false,
, enableDebug ? false
}:
let