Update dependencies

This commit is contained in:
Charlotte Van Petegem 2022-04-30 14:15:36 +02:00
parent 4d3df0103f
commit b451416d6f
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 18 additions and 18 deletions

30
flake.lock generated
View file

@ -41,11 +41,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1651315629, "lastModified": 1651320271,
"narHash": "sha256-8yQHJvMT4/ZyIgSlTfCCsobSlLp4ehAZAuNtxCHkXWc=", "narHash": "sha256-R5lTVrsSvj9XcLaSv/aB+u1Fy9ui1wHjDV0BociSzHE=",
"owner": "accentor", "owner": "accentor",
"repo": "api", "repo": "api",
"rev": "0be26bce630eb3d562a5a0fd8aeaf460383af9f5", "rev": "efe9bae44bb56387f41b9080694a1a6358016750",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -67,11 +67,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1651315771, "lastModified": 1651320674,
"narHash": "sha256-sgO9Ps9uKjMmEZ2wk6nO2+rEA7QN/ToOiUPQO2Bitcc=", "narHash": "sha256-IGg4N4G4nM6Idfr22u7MEg33MQKwoWqqcbQHDiNbfmw=",
"owner": "accentor", "owner": "accentor",
"repo": "web", "repo": "web",
"rev": "8d573abed88681a6b098fe0339aa06f2aeea074b", "rev": "ab63949fca89949c99a27f910a902ad626e11919",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -171,11 +171,11 @@
}, },
"emacs-overlay": { "emacs-overlay": {
"locked": { "locked": {
"lastModified": 1651292314, "lastModified": 1651320164,
"narHash": "sha256-T0urcVjDk4Sq9OUE82NBP74NcIi2QD/4XnyNn2UZGWk=", "narHash": "sha256-I8HdecXidIOQCsJRTOgMui2gIx34VTD4M/sXnQgKhcE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "50b110d31cb274fecad0a85771fcfd0f3878930c", "rev": "8ac1c89acb7fd39c8094d0cb81cb3323bc3eb3dc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -261,11 +261,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1651315376, "lastModified": 1651320236,
"narHash": "sha256-HDut2NdgCAUW+5owtNN25kAgWMtQ/+dboKuEQvBP/p4=", "narHash": "sha256-f3R87k440mwnsRkw3IgOETC7osy9WURYrrydjDRL2N8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "aedc587debd96d14fef91cd9ccc06eda64ce432a", "rev": "348f6ba2b9628302ae7496d47472c12b335b9e6b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -298,11 +298,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1651310060, "lastModified": 1651320901,
"narHash": "sha256-ah8MK0HuEv7naNhHHquMUgQnQFPJ+oLArJjkGqiRBCU=", "narHash": "sha256-henkcWWnFkxx9QhrwVOFAHgFTSnxwi04S8MrteFbzPo=",
"owner": "chvp", "owner": "chvp",
"repo": "tetris", "repo": "tetris",
"rev": "1526e70c74f4e7fec4eb4b8a39767326a1cf1050", "rev": "a0d6355481aa8b6058c501d0604551e45a329925",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -81,9 +81,9 @@
emacs-overlay.overlay emacs-overlay.overlay
(self: super: customPackages self.callPackage) (self: super: customPackages self.callPackage)
(self: super: { (self: super: {
tetris = tetris.defaultPackage.${self.system}; tetris = tetris.packages.${self.system}.default;
accentor-api = accentor-api.defaultPackage.${self.system}; accentor-api = accentor-api.packages.${self.system}.default;
accentor-web = accentor-web.defaultPackage.${self.system}; accentor-web = accentor-web.packages.${self.system}.default;
}) })
nur.overlay nur.overlay
]; ];