mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-19 09:36:47 +02:00
Run statix
This commit is contained in:
parent
c982198485
commit
c64190e650
2 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@
|
||||||
inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
|
inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
|
||||||
inputs.libgit2 = { url = "github:libgit2/libgit2"; flake = false; };
|
inputs.libgit2 = { url = "github:libgit2/libgit2"; flake = false; };
|
||||||
|
|
||||||
outputs = { self, nixpkgs, nixpkgs-regression, lowdown-src, libgit2 }:
|
outputs = { self, nixpkgs, nixpkgs-regression, lowdown-src, libgit2, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (nixpkgs) lib;
|
inherit (nixpkgs) lib;
|
||||||
|
@ -183,7 +183,7 @@
|
||||||
"--enable-internal-api-docs"
|
"--enable-internal-api-docs"
|
||||||
];
|
];
|
||||||
|
|
||||||
changelog-d = pkgs.buildPackages.changelog-d;
|
inherit (pkgs.buildPackages) changelog-d;
|
||||||
|
|
||||||
nativeBuildDeps =
|
nativeBuildDeps =
|
||||||
[
|
[
|
||||||
|
@ -349,7 +349,7 @@
|
||||||
nixStable = prev.nix;
|
nixStable = prev.nix;
|
||||||
|
|
||||||
# Forward from the previous stage as we don’t want it to pick the lowdown override
|
# Forward from the previous stage as we don’t want it to pick the lowdown override
|
||||||
nixUnstable = prev.nixUnstable;
|
inherit (prev) nixUnstable;
|
||||||
|
|
||||||
nix =
|
nix =
|
||||||
let
|
let
|
||||||
|
|
|
@ -141,10 +141,10 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
apis = ["s3" "transfer"];
|
apis = ["s3" "transfer"];
|
||||||
customMemoryManagement = false;
|
customMemoryManagement = false;
|
||||||
}))
|
}))
|
||||||
++ lib.optionals finalAttrs.doCheck ([
|
++ lib.optionals finalAttrs.doCheck [
|
||||||
gtest
|
gtest
|
||||||
rapidcheck
|
rapidcheck
|
||||||
]);
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
boehmgc
|
boehmgc
|
||||||
|
|
Loading…
Reference in a new issue