forked from rarias/bscpkgs
Compare commits
2 Commits
8a8c324cba
...
776e299b77
| Author | SHA1 | Date | |
|---|---|---|---|
|
776e299b77
|
|||
|
2fc46b9ead
|
13
flake.nix
13
flake.nix
@@ -14,12 +14,9 @@
|
||||
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
|
||||
@@ -35,9 +32,7 @@
|
||||
(filterAttrs (_: isDerivation))
|
||||
];
|
||||
|
||||
hydraJobs = {
|
||||
inherit (self.legacyPackages.x86_64-linux.bsc-ci) test;
|
||||
packages = self.packages.${system};
|
||||
};
|
||||
};
|
||||
# propagate nixpkgs lib, so we can do bscpkgs.lib
|
||||
inherit (nixpkgs) lib;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
{ 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
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
{ 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
|
||||
|
||||
Reference in New Issue
Block a user