Migrate to use nix flakes

This commit is contained in:
arne 2021-06-14 11:41:16 +02:00
commit 54864dbac2
5 changed files with 50 additions and 7 deletions

View file

@ -1,9 +1,12 @@
{ pkgs ? import <nixpkgs> { }, lib ? pkgs.stdenv.lib }:
{ pkgs ? import <nixpkgs> { }, }:
pkgs.mkShell rec {
let
lib = pkgs.lib;
in pkgs.mkShell rec {
name = "quil-env";
buildInputs = with pkgs; [
xorg_sys_opengl
clojure
];
LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";