Update accentor

This commit is contained in:
Charlotte Van Petegem 2022-06-30 20:04:30 +02:00
parent 7f106c2c8a
commit 1101a2d6c3
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 13 additions and 14 deletions

24
flake.lock generated
View file

@ -19,11 +19,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1656565848, "lastModified": 1656612059,
"narHash": "sha256-LG0bFFeD2nGmq7qAYTBsiYtMbNitEZZUtZpBDxi1Q/Q=", "narHash": "sha256-HFZIbLKo+3xNlWNxgrgVX3AnF29oPI2HtXwGIJBlKCA=",
"owner": "accentor", "owner": "accentor",
"repo": "flake", "repo": "flake",
"rev": "170af83f6f63c418cd6de67d82bd896425c48ae5", "rev": "0e880cfddca40a8c30109987a03779bce6bfedc7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -45,11 +45,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1656565647, "lastModified": 1656611723,
"narHash": "sha256-PNpmQ9Q446aK7XDXW2mAOezuob1aJe97lJ+vLOJzZwI=", "narHash": "sha256-zgb3/v4VI2yaIWds5ysv5fB6DLug+IyF/eY+yPt73yA=",
"owner": "accentor", "owner": "accentor",
"repo": "api", "repo": "api",
"rev": "09b9a0e4e73a4024c340b41c6ca45133b61f8688", "rev": "18470a331b1ff45bd9a8a8b1b55438697c6e01c8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -71,11 +71,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1656565883, "lastModified": 1656611659,
"narHash": "sha256-lwh9aQVkKiMLjBxofXnpAt7BZkyc7sqkFdtrUGbJTIw=", "narHash": "sha256-L9aNgUXB8uoaqAePCrxdSrJIBksmKWzURUTs68DIEh4=",
"owner": "accentor", "owner": "accentor",
"repo": "web", "repo": "web",
"rev": "6936dd075b3743ceb0a3e7fc160aac941d84834b", "rev": "fed9c035e09ce799c5891eff89ec57a165027f7c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -262,11 +262,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1656597345, "lastModified": 1656611551,
"narHash": "sha256-CVE7hrFev0vNhY3+rqCKw2uJFSt9C6jGICHzak5C8cM=", "narHash": "sha256-S1GkwCgMimVVU1nrwezTkoOqsoiXvvK1+pu4zplsqwo=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "aa51d5efd6c6ac62eb68d136d3c2abaedb4f4938", "rev": "b58e819d423cc525475b43bd06cf5f999feb5325",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -92,13 +92,12 @@
input = nixpkgs; input = nixpkgs;
patches = builtins.map (patch: ./patches + "/${patch}") (builtins.filter (x: x != ".keep") (builtins.attrNames (builtins.readDir ./patches))); patches = builtins.map (patch: ./patches + "/${patch}") (builtins.filter (x: x != ".keep") (builtins.attrNames (builtins.readDir ./patches)));
overlaysBuilder = _: [ overlaysBuilder = _: [
accentor.overlay
devshell.overlay devshell.overlay
emacs-overlay.overlay emacs-overlay.overlay
(self: super: customPackages self.callPackage) (self: super: customPackages self.callPackage)
(self: super: { (self: super: {
tetris = tetris.packages.${self.system}.default; tetris = tetris.packages.${self.system}.default;
accentor-api = accentor-api.packages.${self.system}.default;
accentor-web = accentor-web.packages.${self.system}.default;
}) })
nur.overlay nur.overlay
]; ];