flake.nix: drop unused openwrt input

This commit is contained in:
Thomas Nixon 2022-06-08 00:26:54 +01:00
parent d28a2c402c
commit 34e00cbc11
2 changed files with 2 additions and 24 deletions

View File

@ -14,26 +14,9 @@
"type": "indirect"
}
},
"openwrt": {
"flake": false,
"locked": {
"lastModified": 1651013664,
"narHash": "sha256-efpsYc8KfjIbcD0vdE+VC9tWS471NFAxUB884kJhUEE=",
"ref": "master",
"rev": "f757a8a09885e3c8bb76371e037b8c0731111980",
"revCount": 53988,
"type": "git",
"url": "https://git.openwrt.org/openwrt/openwrt.git?tag=v21.02.3"
},
"original": {
"type": "git",
"url": "https://git.openwrt.org/openwrt/openwrt.git?tag=v21.02.3"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs",
"openwrt": "openwrt"
"nixpkgs": "nixpkgs"
}
}
},

View File

@ -1,12 +1,7 @@
{
description = "A very basic flake";
inputs.openwrt = {
url = "git+https://git.openwrt.org/openwrt/openwrt.git?tag=v21.02.3";
flake = false;
};
outputs = { self, nixpkgs, openwrt }@inputs: {
outputs = { self, nixpkgs }@inputs: {
lib.build =
{ pkgs ? nixpkgs.legacyPackages.x86_64-linux