diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-10T00·13+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-10T11·48+0000 |
commit | 8361b82d0ac59f436f7ecef283077b0f7d689ca1 (patch) | |
tree | 15f9649ae9f3381c7218ea4f46fc9979a12f11bd /third_party | |
parent | 8d4b2f3d54e760ab9f7f8242370a54ff20796553 (diff) |
refactor(third_party): Consistent use of depot.third_party vs. pkgs r/2461
In preparation for the solution of b/108, we need to consistently use `depot.third_party` for packages that are only packed in the TVL depot and `pkgs` for things that come from nixpkgs. This commit cleans up a huge chunk of these uses in //third_party Change-Id: Ic382c0cdea7330a84d5f0b7d109c824ddceb94e7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2912 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'third_party')
46 files changed, 107 insertions, 108 deletions
diff --git a/third_party/buzz/default.nix b/third_party/buzz/default.nix index 88f4cfcf5a7f..ad533feed9d6 100644 --- a/third_party/buzz/default.nix +++ b/third_party/buzz/default.nix @@ -1,6 +1,6 @@ -{ pkgs, ... }: +{ depot, pkgs, ... }: -pkgs.naersk.buildPackage { +depot.third_party.naersk.buildPackage { src = pkgs.fetchFromGitHub { owner = "jonhoo"; repo = "buzz"; diff --git a/third_party/cgit/default.nix b/third_party/cgit/default.nix index e108bb1d7d80..3c7a904b0bd2 100644 --- a/third_party/cgit/default.nix +++ b/third_party/cgit/default.nix @@ -1,9 +1,8 @@ -{ depot, ... }: +{ depot, lib, pkgs, ... }: let - inherit (depot.third_party) lib stdenv gzip bzip2 xz luajit zlib autoconf openssl pkgconfig; -in -stdenv.mkDerivation rec { + inherit (pkgs) stdenv gzip bzip2 xz luajit zlib autoconf openssl pkgconfig; +in stdenv.mkDerivation rec { pname = "cgit"; version = "master"; src = ./.; diff --git a/third_party/gopkgs/github.com/cenkalti/backoff/default.nix b/third_party/gopkgs/github.com/cenkalti/backoff/default.nix index ea9826f5d06c..c0e0335de734 100644 --- a/third_party/gopkgs/github.com/cenkalti/backoff/default.nix +++ b/third_party/gopkgs/github.com/cenkalti/backoff/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/cenkalti/backoff/v4"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "cenkalti"; repo = "backoff"; rev = "18fe4ce5a8550e0d0919b680ad3c080a5455bddf"; diff --git a/third_party/gopkgs/github.com/davecgh/go-spew/default.nix b/third_party/gopkgs/github.com/davecgh/go-spew/default.nix index f8e6b07c5cf4..1395f3dce699 100644 --- a/third_party/gopkgs/github.com/davecgh/go-spew/default.nix +++ b/third_party/gopkgs/github.com/davecgh/go-spew/default.nix @@ -1,8 +1,8 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/davecgh/go-spew"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "davecgh"; repo = "go-spew"; rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73"; diff --git a/third_party/gopkgs/github.com/emirpasic/gods/default.nix b/third_party/gopkgs/github.com/emirpasic/gods/default.nix index decc45350a5f..a858660f4335 100644 --- a/third_party/gopkgs/github.com/emirpasic/gods/default.nix +++ b/third_party/gopkgs/github.com/emirpasic/gods/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/emirpasic/gods"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "emirpasic"; repo = "gods"; rev = "4e23915b9a82f35f320a68a395a7a5045c826932"; diff --git a/third_party/gopkgs/github.com/golang/glog/default.nix b/third_party/gopkgs/github.com/golang/glog/default.nix index 71de4fbf54f2..c8426f2b1a2f 100644 --- a/third_party/gopkgs/github.com/golang/glog/default.nix +++ b/third_party/gopkgs/github.com/golang/glog/default.nix @@ -1,8 +1,8 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/golang/glog"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "golang"; repo = "glog"; rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998"; diff --git a/third_party/gopkgs/github.com/google/uuid/default.nix b/third_party/gopkgs/github.com/google/uuid/default.nix index b1642e25e279..191863bf0eab 100644 --- a/third_party/gopkgs/github.com/google/uuid/default.nix +++ b/third_party/gopkgs/github.com/google/uuid/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/google/uuid"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "google"; repo = "uuid"; rev = "c2e93f3ae59f2904160ceaab466009f965df46d6"; diff --git a/third_party/gopkgs/github.com/jbenet/go-context/default.nix b/third_party/gopkgs/github.com/jbenet/go-context/default.nix index d4013f0e8eb5..401fc6eb40e7 100644 --- a/third_party/gopkgs/github.com/jbenet/go-context/default.nix +++ b/third_party/gopkgs/github.com/jbenet/go-context/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/jbenet/go-context"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "jbenet"; repo = "go-context"; rev = "d14ea06fba99483203c19d92cfcd13ebe73135f4"; diff --git a/third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix b/third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix index d8b699c54b49..6b4e8f5275bc 100644 --- a/third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix +++ b/third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/kevinburke/ssh_config"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "kevinburke"; repo = "ssh_config"; rev = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e"; diff --git a/third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix b/third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix index a95fe63433cf..8c593eaae8c5 100644 --- a/third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix +++ b/third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/mitchellh/go-homedir"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "mitchellh"; repo = "go-homedir"; rev = "af06845cf3004701891bf4fdb884bfe4920b3727"; diff --git a/third_party/gopkgs/github.com/pkg/browser/default.nix b/third_party/gopkgs/github.com/pkg/browser/default.nix index 8515095f0f6d..4588c1b589a5 100644 --- a/third_party/gopkgs/github.com/pkg/browser/default.nix +++ b/third_party/gopkgs/github.com/pkg/browser/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/pkg/browser"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "pkg"; repo = "browser"; rev = "0a3d74bf9ce488f035cf5bc36f753a711bc74334"; diff --git a/third_party/gopkgs/github.com/sergi/go-diff/default.nix b/third_party/gopkgs/github.com/sergi/go-diff/default.nix index dfb0640c8b30..72fb96d475ee 100644 --- a/third_party/gopkgs/github.com/sergi/go-diff/default.nix +++ b/third_party/gopkgs/github.com/sergi/go-diff/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/sergi/go-diff"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "sergi"; repo = "go-diff"; rev = "58c5cb1602ee9676b5d3590d782bedde80706fcc"; diff --git a/third_party/gopkgs/github.com/src-d/gcfg/default.nix b/third_party/gopkgs/github.com/src-d/gcfg/default.nix index b7f5b3b656e6..210ab1bc70a2 100644 --- a/third_party/gopkgs/github.com/src-d/gcfg/default.nix +++ b/third_party/gopkgs/github.com/src-d/gcfg/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/src-d/gcfg"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "src-d"; repo = "gcfg"; rev = "1ac3a1ac202429a54835fe8408a92880156b489d"; diff --git a/third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix b/third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix index d0022806522a..078592aa9d5f 100644 --- a/third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix +++ b/third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "github.com/xanzy/ssh-agent"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "xanzy"; repo = "ssh-agent"; rev = "6a3e2ff9e7c564f36873c2e36413f634534f1c44"; diff --git a/third_party/gopkgs/googlemaps.github.io/maps.nix b/third_party/gopkgs/googlemaps.github.io/maps.nix index b84977b334e8..4d29cc2f8993 100644 --- a/third_party/gopkgs/googlemaps.github.io/maps.nix +++ b/third_party/gopkgs/googlemaps.github.io/maps.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "googlemaps.github.io/maps"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "googlemaps"; repo = "google-maps-services-go"; rev = "a46d9fca56ac82caa79408b2417ea93a75e3b986"; diff --git a/third_party/gopkgs/gopkg.in/irc.v3/default.nix b/third_party/gopkgs/gopkg.in/irc.v3/default.nix index 7165dcce9952..7bfe5500232c 100644 --- a/third_party/gopkgs/gopkg.in/irc.v3/default.nix +++ b/third_party/gopkgs/gopkg.in/irc.v3/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "gopkg.in/irc.v3"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "go-irc"; repo = "irc"; rev = "21a5301d6035ea204b2a7bb522a7b4598e5f6b28"; diff --git a/third_party/gopkgs/gopkg.in/src-d/go-billy/default.nix b/third_party/gopkgs/gopkg.in/src-d/go-billy/default.nix index 6359919cacb0..b2773d85d518 100644 --- a/third_party/gopkgs/gopkg.in/src-d/go-billy/default.nix +++ b/third_party/gopkgs/gopkg.in/src-d/go-billy/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "gopkg.in/src-d/go-billy.v4"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "src-d"; repo = "go-billy"; rev = "fd409ff12f33d0d60af0ce0abeb8d93df360af49"; diff --git a/third_party/gopkgs/gopkg.in/src-d/go-git/default.nix b/third_party/gopkgs/gopkg.in/src-d/go-git/default.nix index 52ac5d869732..ce5fe1d24073 100644 --- a/third_party/gopkgs/gopkg.in/src-d/go-git/default.nix +++ b/third_party/gopkgs/gopkg.in/src-d/go-git/default.nix @@ -1,11 +1,11 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { # .v4 is used throughout the codebase and I can't be bothered to do # anything else about it other than using that package path here. path = "gopkg.in/src-d/go-git.v4"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "src-d"; repo = "go-git"; rev = "1a7db85bca7027d90afdb5ce711622aaac9feaed"; diff --git a/third_party/gopkgs/gopkg.in/warnings/default.nix b/third_party/gopkgs/gopkg.in/warnings/default.nix index 813cd1f0f16e..1b4659d3d84d 100644 --- a/third_party/gopkgs/gopkg.in/warnings/default.nix +++ b/third_party/gopkgs/gopkg.in/warnings/default.nix @@ -1,9 +1,9 @@ -{ depot, ... }: +{ depot, pkgs, ... }: depot.nix.buildGo.external { path = "gopkg.in/warnings.v0"; - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "go-warnings"; repo = "warnings"; rev = "27b9fabbdaf131d2169ec3ff7db8ffc4d839635e"; diff --git a/third_party/lisp/checkl.nix b/third_party/lisp/checkl.nix index 33c2330ecfda..4fb92cb37937 100644 --- a/third_party/lisp/checkl.nix +++ b/third_party/lisp/checkl.nix @@ -12,7 +12,7 @@ let in depot.nix.buildLisp.library { name = "checkl"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ (bundled "asdf") marshal fiveam diff --git a/third_party/lisp/chipz.nix b/third_party/lisp/chipz.nix index dfbf32b09411..2a68d3b1f8e9 100644 --- a/third_party/lisp/chipz.nix +++ b/third_party/lisp/chipz.nix @@ -1,17 +1,15 @@ # Common Lisp library for decompressing deflate, zlib, gzip, and bzip2 data -{ depot, ... }: +{ depot, pkgs, ... }: -with depot.nix; - -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "froydnj"; repo = "chipz"; rev = "75dfbc660a5a28161c57f115adf74c8a926bfc4d"; sha256 = "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"; }; -in buildLisp.library { +in depot.nix.buildLisp.library { name = "chipz"; - deps = [ (buildLisp.bundled "asdf") ]; + deps = [ (depot.nix.buildLisp.bundled "asdf") ]; srcs = map (f: src + ("/" + f)) [ "chipz.asd" diff --git a/third_party/lisp/chunga.nix b/third_party/lisp/chunga.nix index f7879818877c..d40208063372 100644 --- a/third_party/lisp/chunga.nix +++ b/third_party/lisp/chunga.nix @@ -1,7 +1,7 @@ # Portable chunked streams for Common Lisp -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "edicl"; repo = "chunga"; rev = "16330852d01dfde4dd97dee7cd985a88ea571e7e"; diff --git a/third_party/lisp/cl-fad.nix b/third_party/lisp/cl-fad.nix index 8131bf31be2d..85a36568524b 100644 --- a/third_party/lisp/cl-fad.nix +++ b/third_party/lisp/cl-fad.nix @@ -1,9 +1,9 @@ # Portable pathname library -{ depot, ...}: +{ depot, pkgs, ...}: with depot.nix; -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "edicl"; repo = "cl-fad"; rev = "c13d81c4bd9ba3a172631fd05dd213ab90e7d4cb"; diff --git a/third_party/lisp/cl-json.nix b/third_party/lisp/cl-json.nix index 3652bd07932c..5d1450a3e9a1 100644 --- a/third_party/lisp/cl-json.nix +++ b/third_party/lisp/cl-json.nix @@ -1,13 +1,15 @@ # JSON encoder & decoder -{ depot, ... }: +{ depot, pkgs, ... }: -with depot.nix; -let src = depot.third_party.fetchFromGitHub { - owner = "hankhero"; - repo = "cl-json"; - rev = "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"; - sha256 = "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"; -}; +let + inherit (depot.nix) buildLisp; + + src = pkgs.fetchFromGitHub { + owner = "hankhero"; + repo = "cl-json"; + rev = "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"; + sha256 = "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"; + }; in buildLisp.library { name = "cl-json"; deps = [ (buildLisp.bundled "asdf") ]; diff --git a/third_party/lisp/cl-plus-ssl.nix b/third_party/lisp/cl-plus-ssl.nix index 63c21aa6ba45..e4f3fd95e406 100644 --- a/third_party/lisp/cl-plus-ssl.nix +++ b/third_party/lisp/cl-plus-ssl.nix @@ -1,5 +1,5 @@ # Common Lisp bindings to OpenSSL -{ depot, ... }: +{ depot, pkgs, ... }: with depot.nix; @@ -21,7 +21,7 @@ in buildLisp.library { (buildLisp.bundled "sb-posix") ]; - native = [ depot.third_party.openssl ]; + native = [ pkgs.openssl ]; srcs = map (f: src + ("/src/" + f)) [ "package.lisp" diff --git a/third_party/lisp/cl-prevalence.nix b/third_party/lisp/cl-prevalence.nix index c024db0924e2..5c4a65f02d61 100644 --- a/third_party/lisp/cl-prevalence.nix +++ b/third_party/lisp/cl-prevalence.nix @@ -1,8 +1,8 @@ # cl-prevalence is an implementation of object prevalence for CL (i.e. # an in-memory database) -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "40ants"; repo = "cl-prevalence"; rev = "da3ed6c4594b1c2fca90c178c1993973c4bf16c9"; diff --git a/third_party/lisp/cl-smtp.nix b/third_party/lisp/cl-smtp.nix index 05805d316451..6b6b415a03a5 100644 --- a/third_party/lisp/cl-smtp.nix +++ b/third_party/lisp/cl-smtp.nix @@ -11,7 +11,7 @@ let in depot.nix.buildLisp.library { name = "cl-smtp"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ usocket trivial-gray-streams flexi-streams diff --git a/third_party/lisp/closer-mop.nix b/third_party/lisp/closer-mop.nix index ab7e33e59b04..0fda09bbb45c 100644 --- a/third_party/lisp/closer-mop.nix +++ b/third_party/lisp/closer-mop.nix @@ -1,9 +1,9 @@ # Closer to MOP is a compatibility layer that rectifies many of the # absent or incorrect CLOS MOP features across a broad range of Common # Lisp implementations -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "pcostanza"; repo = "closer-mop"; rev = "e1d1430524086709a7ea8e0eede6849aa29d6276"; diff --git a/third_party/lisp/drakma.nix b/third_party/lisp/drakma.nix index 8b8b9f1c903f..80c82aee1f6f 100644 --- a/third_party/lisp/drakma.nix +++ b/third_party/lisp/drakma.nix @@ -1,15 +1,13 @@ # Drakma is an HTTP client for Common Lisp. -{ depot, ... }: +{ depot, pkgs, ... }: -with depot.nix; - -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "edicl"; repo = "drakma"; rev = "87feb02bef00b11a753d5fb21a5fec526b0d0bbb"; sha256 = "01b80am2vrw94xmdj7f21qm7p5ys08mmpzv4nc4icql81hqr1w2m"; }; -in buildLisp.library { +in depot.nix.buildLisp.library { name = "drakma"; deps = with depot.third_party.lisp; [ chipz @@ -20,7 +18,7 @@ in buildLisp.library { flexi-streams puri usocket - (buildLisp.bundled "asdf") + (depot.nix.buildLisp.bundled "asdf") ]; srcs = map (f: src + ("/" + f)) [ diff --git a/third_party/lisp/hunchentoot.nix b/third_party/lisp/hunchentoot.nix index 9977405c65a1..3006f5fd72d7 100644 --- a/third_party/lisp/hunchentoot.nix +++ b/third_party/lisp/hunchentoot.nix @@ -1,8 +1,8 @@ # Hunchentoot is a web framework for Common Lisp. -{ depot, ...}: +{ depot, pkgs, ...}: let - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "edicl"; repo = "hunchentoot"; rev = "585b45b6b873f2da421fdf456b61860ab5868207"; diff --git a/third_party/lisp/lisp-binary.nix b/third_party/lisp/lisp-binary.nix index f2dab565c2c1..901953634072 100644 --- a/third_party/lisp/lisp-binary.nix +++ b/third_party/lisp/lisp-binary.nix @@ -1,7 +1,7 @@ # A library to easily read and write complex binary formats. -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "j3pic"; repo = "lisp-binary"; rev = "1aefc8618b7734f68697ddf59bc93cb8522aa0bf"; diff --git a/third_party/lisp/local-time.nix b/third_party/lisp/local-time.nix index 52e7c257e497..65fb9c37fbf2 100644 --- a/third_party/lisp/local-time.nix +++ b/third_party/lisp/local-time.nix @@ -1,7 +1,7 @@ # Library for manipulating dates & times -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "dlowe-net"; repo = "local-time"; rev = "dc54f61415c76ee755a6f69d4154a3a282f2789f"; diff --git a/third_party/lisp/md5.nix b/third_party/lisp/md5.nix index 3f2ed371de83..a789f7bc2af3 100644 --- a/third_party/lisp/md5.nix +++ b/third_party/lisp/md5.nix @@ -1,9 +1,9 @@ # MD5 hash implementation -{ depot, ... }: +{ depot, pkgs, ... }: with depot.nix; -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "pmai"; repo = "md5"; rev = "b1412600f60d526ee34a7ba1596ec483da7894ab"; diff --git a/third_party/lisp/moptilities.nix b/third_party/lisp/moptilities.nix index 24a7f2c06d51..89cfb9a938ed 100644 --- a/third_party/lisp/moptilities.nix +++ b/third_party/lisp/moptilities.nix @@ -1,7 +1,7 @@ # Compatibility layer for minor MOP implementation differences -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "gwkkwg"; repo = "moptilities"; rev = "a436f16b357c96b82397ec018ea469574c10dd41"; diff --git a/third_party/lisp/postmodern.nix b/third_party/lisp/postmodern.nix index cc133eeb8939..e50e65f1c138 100644 --- a/third_party/lisp/postmodern.nix +++ b/third_party/lisp/postmodern.nix @@ -12,7 +12,7 @@ let cl-postgres = depot.nix.buildLisp.library { name = "cl-postgres"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ md5 split-sequence ironclad @@ -44,7 +44,7 @@ let s-sql = depot.nix.buildLisp.library { name = "s-sql"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ cl-postgres alexandria ]; @@ -58,7 +58,7 @@ let postmodern = depot.nix.buildLisp.library { name = "postmodern"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ alexandria cl-postgres s-sql diff --git a/third_party/lisp/puri.nix b/third_party/lisp/puri.nix index 0d908af5439a..925b457f9f03 100644 --- a/third_party/lisp/puri.nix +++ b/third_party/lisp/puri.nix @@ -1,7 +1,7 @@ # Portable URI library -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchgit { +let src = pkgs.fetchgit { url = "http://git.kpe.io/puri.git"; rev = "4bbab89d9ccbb26346899d1f496c97604fec567b"; sha256 = "0gq2rsr0aihs0z20v4zqvmdl4szq53b52rh97pvnmwrlbn4mapmd"; diff --git a/third_party/lisp/rfc2388.nix b/third_party/lisp/rfc2388.nix index 8288094904c2..6af55f927001 100644 --- a/third_party/lisp/rfc2388.nix +++ b/third_party/lisp/rfc2388.nix @@ -1,7 +1,7 @@ # Implementation of RFC2388 (multipart/form-data) -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "jdz"; repo = "rfc2388"; rev = "591bcf7e77f2c222c43953a80f8c297751dc0c4e"; diff --git a/third_party/lisp/s-sysdeps.nix b/third_party/lisp/s-sysdeps.nix index aebd7c3f7b26..571eb147c724 100644 --- a/third_party/lisp/s-sysdeps.nix +++ b/third_party/lisp/s-sysdeps.nix @@ -1,7 +1,7 @@ # A Common Lisp abstraction layer over platform dependent functionality. -{ depot, ... }: +{ depot, pkgs, ... }: -let src = depot.third_party.fetchFromGitHub { +let src = pkgs.fetchFromGitHub { owner = "svenvc"; repo = "s-sysdeps"; rev = "d28246b5dffef9e73a0e0e6cfbc4e878006fe34d"; diff --git a/third_party/lisp/trivial-ldap.nix b/third_party/lisp/trivial-ldap.nix index aed651239da2..ec111bc682e0 100644 --- a/third_party/lisp/trivial-ldap.nix +++ b/third_party/lisp/trivial-ldap.nix @@ -9,7 +9,7 @@ let src = pkgs.fetchFromGitHub { in depot.nix.buildLisp.library { name = "trivial-ldap"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ usocket cl-plus-ssl cl-yacc diff --git a/third_party/lisp/uax-15.nix b/third_party/lisp/uax-15.nix index 664be63f06b3..8d420d26f692 100644 --- a/third_party/lisp/uax-15.nix +++ b/third_party/lisp/uax-15.nix @@ -16,7 +16,7 @@ let in depot.nix.buildLisp.library { name = "uax-15"; - deps = with pkgs.lisp; [ + deps = with depot.third_party.lisp; [ split-sequence cl-ppcre (bundled "uiop") diff --git a/third_party/lisp/unix-opts.nix b/third_party/lisp/unix-opts.nix index 99117d8beb2a..389de25eff4f 100644 --- a/third_party/lisp/unix-opts.nix +++ b/third_party/lisp/unix-opts.nix @@ -1,8 +1,8 @@ # unix-opts is a portable command line argument parser -{ depot, ...}: +{ depot, pkgs, ...}: let - src = depot.third_party.fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "libre-man"; repo = "unix-opts"; rev = "b805050b074bd860edd18cfc8776fdec666ec36e"; diff --git a/third_party/lisp/usocket.nix b/third_party/lisp/usocket.nix index 920c41c58d25..888d5e01a0d5 100644 --- a/third_party/lisp/usocket.nix +++ b/third_party/lisp/usocket.nix @@ -1,14 +1,15 @@ # Usocket is a portable socket library -{ depot, ... }: +{ depot, pkgs, ... }: -with depot.nix; +let + inherit (depot.nix) buildLisp; -let src = depot.third_party.fetchFromGitHub { - owner = "usocket"; - repo = "usocket"; - rev = "fdf4fd1e0051ce83340ccfbbc8a43a462bb19cf2"; - sha256 = "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"; -}; + src = pkgs.fetchFromGitHub { + owner = "usocket"; + repo = "usocket"; + rev = "fdf4fd1e0051ce83340ccfbbc8a43a462bb19cf2"; + sha256 = "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"; + }; in buildLisp.library { name = "usocket"; deps = with depot.third_party.lisp; [ diff --git a/third_party/nixpkgs-exposed/exposed/default.nix b/third_party/nixpkgs-exposed/exposed/default.nix index 75b5429e3691..bac6dfe2f787 100644 --- a/third_party/nixpkgs-exposed/exposed/default.nix +++ b/third_party/nixpkgs-exposed/exposed/default.nix @@ -113,6 +113,7 @@ pandoc pango parallel + path pkgconfig pkgsCross plantuml diff --git a/third_party/protobuf/default.nix b/third_party/protobuf/default.nix index 84ac44c26bee..ce4a2f8aa5b4 100644 --- a/third_party/protobuf/default.nix +++ b/third_party/protobuf/default.nix @@ -1,7 +1,7 @@ # Pin protobuf to version 3.12, with LLVM. -{ pkgs, ... }: +{ depot, pkgs, ... }: -pkgs.callPackage "${pkgs.nixpkgsSrc}/pkgs/development/libraries/protobuf/generic-v3.nix" { +pkgs.callPackage "${depot.third_party.nixpkgsSrc}/pkgs/development/libraries/protobuf/generic-v3.nix" { version = "3.12.2"; sha256 = "1lp368aa206vpic9fmax4k6llnmf28plfvkkm4vqhgphmjqykvl2"; stdenv = pkgs.llvmPackages.libcxxStdenv; diff --git a/third_party/rapidcheck/default.nix b/third_party/rapidcheck/default.nix index eba1d9ca4536..a442f7f99116 100644 --- a/third_party/rapidcheck/default.nix +++ b/third_party/rapidcheck/default.nix @@ -1,6 +1,6 @@ { pkgs, ... }: -(pkgs.callPackage "${pkgs.nixpkgsSrc}/pkgs/development/libraries/rapidcheck" { +(pkgs.callPackage "${pkgs.path}/pkgs/development/libraries/rapidcheck" { stdenv = pkgs.llvmPackages.libcxxStdenv; }).overrideAttrs (attrs: rec { # follows the versioning scheme of nixpkgs, since rapidcheck does not diff --git a/third_party/rust-crates/default.nix b/third_party/rust-crates/default.nix index 187de6e70933..f44123ec1b6c 100644 --- a/third_party/rust-crates/default.nix +++ b/third_party/rust-crates/default.nix @@ -1,10 +1,10 @@ -{ depot, ... }: +{ depot, pkgs, ... }: let buildRustCrate = attrs@{ edition ? "2018", ... - }: depot.third_party.buildRustCrate (attrs // { + }: pkgs.buildRustCrate (attrs // { inherit edition ; |