1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-04-19 19:34:24 +02:00

build(nix): update flake

This commit is contained in:
Jake Stanger 2023-01-29 23:11:14 +00:00
parent 96141d4990
commit 80a4b1d177
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
2 changed files with 8 additions and 7 deletions

12
flake.lock generated
View file

@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1672350804, "lastModified": 1674641431,
"narHash": "sha256-jo6zkiCabUBn3ObuKXHGqqORUMH27gYDIFFfLq5P4wg=", "narHash": "sha256-qfo19qVZBP4qn5M5gXc/h1MDgAtPA5VxJm9s8RUAkVk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "677ed08a50931e38382dbef01cba08a8f7eac8f6", "rev": "9b97ad7b4330aacda9b2343396eb3df8a853b4fc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -45,11 +45,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1672453260, "lastModified": 1674959389,
"narHash": "sha256-ruR2xo30Vn7kY2hAgg2Z2xrCvNePxck6mgR5a8u+zow=", "narHash": "sha256-N0kc+CE9Vy7Mj8Z/cLHx59gL+ZnkmylYH0BQEWz3TZU=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "176b6fd3dd3d7cea8d22ab1131364a050228d94c", "rev": "edd082ca16aa055d5504bea39da36b3ee68e4f1d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -50,7 +50,7 @@
cargoDeps = rustPlatform.importCargoLock {lockFile = ./Cargo.lock;}; cargoDeps = rustPlatform.importCargoLock {lockFile = ./Cargo.lock;};
cargoLock.lockFile = ./Cargo.lock; cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = with prev; [pkg-config]; nativeBuildInputs = with prev; [pkg-config];
buildInputs = with prev; [gtk3 gdk-pixbuf gtk-layer-shell libxkbcommon]; buildInputs = with prev; [gtk3 gdk-pixbuf gtk-layer-shell libxkbcommon openssl];
}; };
}; };
packages = genSystems ( packages = genSystems (
@ -74,6 +74,7 @@
gtk3 gtk3
gtk-layer-shell gtk-layer-shell
pkg-config pkg-config
openssl
]; ];
RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/library"; RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/library";