Go back to oxalica overlay again

This commit is contained in:
Sridhar Ratnakumar 2021-04-08 00:06:28 -04:00
parent 8ae61871a3
commit ef073db987
3 changed files with 66 additions and 3 deletions

View file

@ -3,7 +3,7 @@ on:
pull_request: pull_request:
push: push:
jobs: jobs:
tests: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4

View file

@ -33,6 +33,21 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils": {
"locked": {
"lastModified": 1614513358,
"narHash": "sha256-LakhOx3S1dRjnh0b5Dg3mbZyH0ToC9I8Y2wKSkBaTzU=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "5466c5bbece17adaab2d82fae80b46e807611bf3",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"gitignore": { "gitignore": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -65,15 +80,50 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1617325113,
"narHash": "sha256-GksR0nvGxfZ79T91UUtWjjccxazv6Yh/MvEJ82v1Xmw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "54c1e44240d8a527a8f4892608c4bce5440c3ecb",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "nixpkgs",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"crate2nix": "crate2nix", "crate2nix": "crate2nix",
"flake-compat": "flake-compat", "flake-compat": "flake-compat",
"gitignore": "gitignore", "gitignore": "gitignore",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"rust-overlay": "rust-overlay",
"utils": "utils" "utils": "utils"
} }
}, },
"rust-overlay": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1617848844,
"narHash": "sha256-nhPuATSHRrzfZNjtl8zmMhZklYFCHiQd7+uf+jQbd+o=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "70330a767d25daa6063e89e38d68b94b2d971831",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
},
"utils": { "utils": {
"locked": { "locked": {
"lastModified": 1617631617, "lastModified": 1617631617,

View file

@ -8,6 +8,7 @@
url = "github:hercules-ci/gitignore"; url = "github:hercules-ci/gitignore";
flake=false; flake=false;
}; };
rust-overlay.url = "github:oxalica/rust-overlay";
crate2nix = { crate2nix = {
url = "github:balsoft/crate2nix/tools-nix-version-comparison"; url = "github:balsoft/crate2nix/tools-nix-version-comparison";
flake = false; flake = false;
@ -18,11 +19,23 @@
}; };
}; };
outputs = { self, nixpkgs, utils, gitignore, crate2nix, ... }: outputs = { self, nixpkgs, utils, gitignore, rust-overlay, crate2nix, ... }:
utils.lib.eachDefaultSystem utils.lib.eachDefaultSystem
(system: (system:
let let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs {
inherit system;
overlays = [
rust-overlay.overlay
(self: super: {
# Because rust-overlay bundles multiple rust packages into one
# derivation, specify that mega-bundle here, so that naersk
# will use them automatically.
rustc = self.rust-bin.stable.latest.default;
cargo = self.rust-bin.stable.latest.default;
})
];
};
inherit (import "${crate2nix}/tools.nix" { inherit pkgs; }) inherit (import "${crate2nix}/tools.nix" { inherit pkgs; })
generatedCargoNix; generatedCargoNix;
inherit (import gitignore { inherit (pkgs) lib; }) gitignoreSource; inherit (import gitignore { inherit (pkgs) lib; }) gitignoreSource;