doggo/flake.nix

20 lines
353 B
Nix
Raw Normal View History

2022-05-03 22:01:21 +02:00
{
description = "Doggo flake";
outputs = { self, nixpkgs }:
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShell.x86_64-linux = with pkgs;
mkShell {
2024-05-04 14:54:49 +02:00
nativeBuildInputs = [
2022-05-03 22:01:21 +02:00
just
zig
2024-05-04 14:54:49 +02:00
zls
];
buildInputs = [
2024-05-04 19:03:50 +02:00
gtk4
2022-05-03 22:01:21 +02:00
];
};
};
}