diff options
| author | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-04 13:38:11 +1100 |
|---|---|---|
| committer | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-07 11:41:51 +1100 |
| commit | 56ac6182d3fcb449db620fac0658eedd56aa1597 (patch) | |
| tree | 949ea90cdcb48f0bce12258588ab6cf649f90724 | |
| parent | c904f6cdcb02c85181cf478496b0b9a78308133a (diff) | |
release: remove unnecessary use of `release-lib`
| -rw-r--r-- | release.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/release.nix b/release.nix index c4d4c58..cba4210 100644 --- a/release.nix +++ b/release.nix @@ -5,19 +5,10 @@ }: let - release-lib = import (nixpkgs + "/pkgs/top-level/release-lib.nix") { - inherit supportedSystems scrubJobs system; - packageSet = import nixpkgs; - }; - - inherit (release-lib) pkgs; - buildFromConfig = configuration: sel: sel (import ./. { inherit nixpkgs configuration system; }).config; - makeSystem = configuration: pkgs.lib.genAttrs [ system ] (system: - buildFromConfig configuration (config: config.system.build.toplevel) - ); + makeSystem = configuration: buildFromConfig configuration (config: config.system.build.toplevel); makeTest = test: let |
