mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
packaging: Expose libs
This exposes the libraries in a way that is easily replicated in Nixpkgs, without having to create a package set within a package set.
This commit is contained in:
parent
0bcc83d0e7
commit
2a14a20bb3
1 changed files with 34 additions and 1 deletions
|
@ -76,7 +76,7 @@
|
||||||
] ++ lib.optionals (stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
] ++ lib.optionals (stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
||||||
nix-perl-bindings
|
nix-perl-bindings
|
||||||
];
|
];
|
||||||
}).overrideAttrs (_: {
|
}).overrideAttrs (finalAttrs: prevAttrs: {
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
|
||||||
|
@ -90,4 +90,37 @@
|
||||||
installCheckInputs = [
|
installCheckInputs = [
|
||||||
nix-functional-tests
|
nix-functional-tests
|
||||||
];
|
];
|
||||||
|
passthru = prevAttrs.passthru // {
|
||||||
|
/**
|
||||||
|
These are the libraries that are part of the Nix project. They are used
|
||||||
|
by the Nix CLI and other tools.
|
||||||
|
|
||||||
|
If you need to use these libraries in your project, we recommend to use
|
||||||
|
the `-c` C API libraries exclusively, if possible.
|
||||||
|
|
||||||
|
We also recommend that you build the complete package to ensure that the unit tests pass.
|
||||||
|
You could do this in CI, or by passing it in an unused environment variable. e.g in a `mkDerivation` call:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
buildInputs = [ nix.libs.nix-util-c nix.libs.nix-store-c ];
|
||||||
|
# Make sure the nix libs we use are ok
|
||||||
|
unusedInputsForTests = [ nix ];
|
||||||
|
disallowedReferences = nix.all;
|
||||||
|
```
|
||||||
|
*/
|
||||||
|
libs = {
|
||||||
|
inherit
|
||||||
|
nix-util
|
||||||
|
nix-util-c
|
||||||
|
nix-store
|
||||||
|
nix-store-c
|
||||||
|
nix-fetchers
|
||||||
|
nix-expr
|
||||||
|
nix-expr-c
|
||||||
|
nix-flake
|
||||||
|
nix-main
|
||||||
|
nix-main-c
|
||||||
|
;
|
||||||
|
};
|
||||||
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue