From 116dc5f0b548a43390ee13636b2d372c07af3702 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sun, 25 Feb 2024 14:46:22 -0500 Subject: update --- clisp/flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 clisp/flake.nix (limited to 'clisp/flake.nix') diff --git a/clisp/flake.nix b/clisp/flake.nix new file mode 100644 index 0000000..644371b --- /dev/null +++ b/clisp/flake.nix @@ -0,0 +1,17 @@ +{ + description = "A basic flake"; + inputs = { + nixpkgs.url = "github:nixos/nixpkgs"; + }; + + outputs = { self, nixpkgs }: + let + pkgs = nixpkgs.legacyPackages.x86_64-linux; + in + { + devShell.x86_64-linux = pkgs.mkShell rec { + buildInputs = with pkgs; [ sbcl openssl ]; + LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs; + }; + }; +} -- cgit v1.2.3