fix flake and update

This commit is contained in:
nek0 2023-11-24 18:55:39 +01:00
parent 009cd6fac7
commit 01183a2465
2 changed files with 25 additions and 63 deletions

View file

@ -2,15 +2,19 @@
"nodes": { "nodes": {
"affection-src": { "affection-src": {
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": [
"nixpkgs": "nixpkgs" "flake-utils"
],
"nixpkgs": [
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1681966074, "lastModified": 1700847735,
"narHash": "sha256-J58qqZY88VQMyz1yahmi67yeypfT2EE+griYKcnLg5I=", "narHash": "sha256-hSHgLPZwWP7tPoUhH2GLQ4GvHvVGFiXIM0CLps+O5KE=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "086eb3e1f278d44e6dba19c84345959309fbaa73", "rev": "d0465fa3e1d122503439df7c2de9d16598fc0cf5",
"revCount": 302, "revCount": 306,
"type": "git", "type": "git",
"url": "https://gitea.nek0.eu/nek0/affection" "url": "https://gitea.nek0.eu/nek0/affection"
}, },
@ -24,29 +28,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1681202837, "lastModified": 1694529238,
"narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "cfacdce06f30d2b68473a46042957675eebb3401", "rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"flake-utils_2": {
"inputs": {
"systems": "systems_2"
},
"locked": {
"lastModified": 1681202837,
"narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "cfacdce06f30d2b68473a46042957675eebb3401",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -57,26 +43,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1681963077, "lastModified": 1700844339,
"narHash": "sha256-8uJm8D6bJ7HEUkeHiWYbSfYKKhEIcgCsp/FQaGTS8RM=", "narHash": "sha256-VRlPYk0eRn1ao75hoA99LGehYhxZH5RlkP1YXpVROHM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7ddf6698abe1eec2479590144701ca88fe2fcfe9", "rev": "33576fdfce2d11204067d6cfa99a2f990ef2169a",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1681966623,
"narHash": "sha256-6c72zWCNGNtCa9kPPlAeXlj6bPE8xHtM/Kmhye38JWI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "305d1e3887b0a61480b8b9abbb41be2dea47ac38",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -88,8 +59,8 @@
"root": { "root": {
"inputs": { "inputs": {
"affection-src": "affection-src", "affection-src": "affection-src",
"flake-utils": "flake-utils_2", "flake-utils": "flake-utils",
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs"
} }
}, },
"systems": { "systems": {
@ -106,21 +77,6 @@
"repo": "default", "repo": "default",
"type": "github" "type": "github"
} }
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -4,7 +4,13 @@
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs"; nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
affection-src.url = "git+https://gitea.nek0.eu/nek0/affection"; affection-src = {
url = "git+https://gitea.nek0.eu/nek0/affection";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
}; };
outputs = { self, nixpkgs, flake-utils, affection-src }: outputs = { self, nixpkgs, flake-utils, affection-src }: