summaryrefslogtreecommitdiff
path: root/nix/whisper/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/whisper/flake.nix')
-rw-r--r--nix/whisper/flake.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nix/whisper/flake.nix b/nix/whisper/flake.nix
new file mode 100644
index 00000000..8e3e328f
--- /dev/null
+++ b/nix/whisper/flake.nix
@@ -0,0 +1,20 @@
+{
+ inputs = {
+ nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
+ };
+ outputs = { self, nixpkgs }:
+ let
+ pkgs = import nixpkgs {
+ system = "x86_64-linux";
+ overlays = [];
+ };
+ shell = pkgs.mkShell {
+ NIX_HARDENING_ENABLE = "";
+ buildInputs = [
+ pkgs.SDL2
+ ];
+ };
+ in {
+ devShells.x86_64-linux.default = shell;
+ };
+}