mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-26 09:46:04 +03:00
move v1/nix to top-level
This commit is contained in:
parent
fcfda68490
commit
96a11d4197
@ -8,7 +8,7 @@
|
|||||||
Automate reproducible packaging for various language ecosystems
|
Automate reproducible packaging for various language ecosystems
|
||||||
<br>
|
<br>
|
||||||
<a href="https://nix-community.github.io/dream2nix/">Documentation</a> |
|
<a href="https://nix-community.github.io/dream2nix/">Documentation</a> |
|
||||||
<a href="https://github.com/nix-community/dream2nix/tree/main/v1/nix/modules/drvs">Examples</a>
|
<a href="https://github.com/nix-community/dream2nix/tree/main/modules/drvs">Examples</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
!!! Warning: dream2nix is unstable software. While simple UX is one of our main focus points, the APIs are still under development. Do expect changes that will break your setup.
|
!!! Warning: dream2nix is unstable software. While simple UX is one of our main focus points, the APIs are still under development. Do expect changes that will break your setup.
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
Automate reproducible packaging for various language ecosystems
|
Automate reproducible packaging for various language ecosystems
|
||||||
<br>
|
<br>
|
||||||
<a href="https://nix-community.github.io/dream2nix/">Documentation</a> |
|
<a href="https://nix-community.github.io/dream2nix/">Documentation</a> |
|
||||||
<a href="https://github.com/nix-community/dream2nix/tree/main/v1/nix/modules/drvs">Examples</a>
|
<a href="https://github.com/nix-community/dream2nix/tree/main/modules/drvs">Examples</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
!!! Warning: dream2nix is unstable software. While simple UX is one of our main focus points, the APIs are still under development. Do expect changes that will break your setup.
|
!!! Warning: dream2nix is unstable software. While simple UX is one of our main focus points, the APIs are still under development. Do expect changes that will break your setup.
|
||||||
|
@ -149,7 +149,7 @@
|
|||||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||||
imports = [
|
imports = [
|
||||||
./templates
|
./templates
|
||||||
./v1/nix/modules/flake-parts/all-modules.nix
|
./modules/flake-parts/all-modules.nix
|
||||||
];
|
];
|
||||||
systems = [
|
systems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
|
@ -42,5 +42,5 @@ in {
|
|||||||
version = l.mkForce "0.0.0";
|
version = l.mkForce "0.0.0";
|
||||||
|
|
||||||
lock.lockFileRel =
|
lock.lockFileRel =
|
||||||
l.mkForce "/v1/nix/modules/drvs/nodejs-no-lock/lock-${system}.json";
|
l.mkForce "/modules/drvs/nodejs-no-lock/lock-${system}.json";
|
||||||
}
|
}
|
@ -13,9 +13,9 @@
|
|||||||
}: let
|
}: let
|
||||||
# A module imported into every package setting up the eval cache
|
# A module imported into every package setting up the eval cache
|
||||||
setup = {config, ...}: {
|
setup = {config, ...}: {
|
||||||
lock.lockFileRel = "/v1/nix/modules/drvs/${config.name}/lock-${system}.json";
|
lock.lockFileRel = "/modules/drvs/${config.name}/lock-${system}.json";
|
||||||
lock.repoRoot = self;
|
lock.repoRoot = self;
|
||||||
eval-cache.cacheFileRel = "/v1/nix/modules/drvs/${config.name}/cache-${system}.json";
|
eval-cache.cacheFileRel = "/modules/drvs/${config.name}/cache-${system}.json";
|
||||||
eval-cache.repoRoot = self;
|
eval-cache.repoRoot = self;
|
||||||
eval-cache.enable = true;
|
eval-cache.enable = true;
|
||||||
deps.npm = inputs.nixpkgs.legacyPackages.${system}.nodejs.pkgs.npm.override (old: rec {
|
deps.npm = inputs.nixpkgs.legacyPackages.${system}.nodejs.pkgs.npm.override (old: rec {
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user