wonderful

This commit is contained in:
Rakarake 2026-01-03 17:20:17 +01:00
parent 164c8dd15f
commit fc0bb752f7
2 changed files with 12 additions and 4 deletions

View file

@ -9,7 +9,7 @@
let
pkgs = import nixpkgs { inherit system; };
in
{
rec {
defaultPackage = pkgs.stdenv.mkDerivation rec {
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath buildInputs}";
name = "glonkers";
@ -28,6 +28,14 @@
cp glonkers $out/bin
'';
};
devShell = pkgs.mkShell {
packages =
defaultPackage.nativeBuildInputs ++
defaultPackage.buildInputs ++
(with pkgs; [
renderdoc
]);
};
}
);
}