wonderful
This commit is contained in:
parent
164c8dd15f
commit
fc0bb752f7
2 changed files with 12 additions and 4 deletions
10
flake.nix
10
flake.nix
|
|
@ -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
|
||||
]);
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue