From 98eca7d594960aa616786cbd491b937d50f55499 Mon Sep 17 00:00:00 2001 From: Joris Date: Wed, 27 Dec 2023 18:21:37 +0100 Subject: First version with 2 songs --- flake.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..4b24639 --- /dev/null +++ b/flake.nix @@ -0,0 +1,21 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem + (system: + let pkgs = nixpkgs.legacyPackages.${system}; + in { + devShell = pkgs.mkShell { + buildInputs = with pkgs; [ + psmisc # fuser + sbcl + watchexec + ]; + }; + } + ); +} -- cgit v1.2.3