lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 43 lines 1.2 kB view raw
1# To run this example from the command line, run this command: 2# 3# $ nix-build ./bordeaux-threads.nix 4# $ ls ./result/ 5# 6# To run from a nix repl, run: 7# $ nix repl 8# nix-repl> bt = import ./bordeaux-threads.nix 9# nix-repl> :b bt 10# 11# In the `result` directory you can find .fasl files of the 12# bordeaux-threads library: 13# 14# $ ls -l ./result/src/ 15 16let 17 18 pkgs = import ../../../../default.nix {}; 19 20 sbcl = "${pkgs.sbcl}/bin/sbcl --script"; 21 22 alexandria = pkgs.lispPackages_new.build-asdf-system { 23 pname = "alexandria"; 24 version = "v1.4"; 25 src = pkgs.fetchzip { 26 url = "https://gitlab.common-lisp.net/alexandria/alexandria/-/archive/v1.4/alexandria-v1.4.tar.gz"; 27 sha256 = "0r1adhvf98h0104vq14q7y99h0hsa8wqwqw92h7ghrjxmsvz2z6l"; 28 }; 29 lisp = sbcl; 30 }; 31 32 bordeaux-threads = pkgs.lispPackages_new.build-asdf-system { 33 pname = "bordeaux-threads"; 34 version = "0.8.8"; 35 src = pkgs.fetchzip { 36 url = "http://github.com/sionescu/bordeaux-threads/archive/v0.8.8.tar.gz"; 37 sha256 = "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6"; 38 }; 39 lisp = sbcl; 40 lispLibs = [ alexandria ]; 41 }; 42 43in bordeaux-threads