flake.nix: use the registry

This commit is contained in:
Bruno Bigras 2021-11-15 13:36:04 -05:00
parent 11f8edbaad
commit 9140ba1811
2 changed files with 13 additions and 15 deletions

View file

@ -53,17 +53,16 @@
"pypi-deps-db": "pypi-deps-db" "pypi-deps-db": "pypi-deps-db"
}, },
"locked": { "locked": {
"lastModified": 1635348539, "lastModified": 1636732295,
"narHash": "sha256-SXrwF/KPz8McBN8kN+HTfGphE1hiRSr1mtXSVjPJr8o=", "narHash": "sha256-nVHV50D1AqlTIvtZXecUlS5O7BSI2a1ZTmB9x/aMGrc=",
"owner": "DavHau", "owner": "DavHau",
"repo": "mach-nix", "repo": "mach-nix",
"rev": "98d001727542bb6142d0ab554fc30bd591b07c73", "rev": "50367a977bb9a1a267e7f12472725ad08c54702f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "DavHau", "id": "mach-nix",
"repo": "mach-nix", "type": "indirect"
"type": "github"
} }
}, },
"nixpkgs": { "nixpkgs": {
@ -83,18 +82,17 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1635336330, "lastModified": 1636886446,
"narHash": "sha256-EPrCZTmuOEY1KLjUCu7rXCBxNemggIFJMDdfEqXQKGo=", "narHash": "sha256-4xsVM2H8CG3d/3V+GqDDLDOmb3kdrugbqKVyrg8Q/zc=",
"owner": "nixos", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "51acb65b302551ac7993b437cc6863fe9fa8ae50", "rev": "5cb226a06c49f7a2d02863d0b5786a310599df6b",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "id": "nixpkgs",
"ref": "nixpkgs-unstable", "ref": "nixpkgs-unstable",
"repo": "nixpkgs", "type": "indirect"
"type": "github"
} }
}, },
"pypi-deps-db": { "pypi-deps-db": {

View file

@ -2,13 +2,13 @@
description = "Peer2Peer Nix-Binary-Cache"; description = "Peer2Peer Nix-Binary-Cache";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-compat = { flake-compat = {
url = "github:edolstra/flake-compat"; url = "github:edolstra/flake-compat";
flake = false; flake = false;
}; };
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
mach-nix.url = "github:DavHau/mach-nix"; mach-nix.url = "mach-nix";
}; };
outputs = { self, nixpkgs, flake-utils, mach-nix, ... }: { outputs = { self, nixpkgs, flake-utils, mach-nix, ... }: {