diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-10-11 13:35:38 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-10-11 13:36:10 +0200 |
commit | 939cc3e115f5f7b06b09b46c4519502027e25d0d (patch) | |
tree | c62ef902efc36cf0fb92eeab85fd4114e95240e8 | |
parent | 2e67bf911533a66b5a5b7b50481b426adff8c7db (diff) |
unvendor dependencies
-rw-r--r-- | default.nix | 1 | ||||
-rw-r--r-- | nix/sources.json | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 901ca45..5009a5b 100644 --- a/default.nix +++ b/default.nix @@ -9,6 +9,7 @@ let backend = self.callCabal2nix "backend" ./backend { }; common = self.callCabal2nix "common" ./common { }; frontend = self.callCabal2nix "frontend" ./frontend { }; + sh = self.callCabal2nix "sh" sources.sh { }; websockets = pkgs.haskell.lib.doJailbreak super.websockets; }; }; diff --git a/nix/sources.json b/nix/sources.json index 7ab4228..7fee170 100644 --- a/nix/sources.json +++ b/nix/sources.json @@ -16,5 +16,11 @@ "type": "tarball", "url": "https://github.com/NixOS/nixpkgs/archive/a7d95e2b0029b8ee30facbe664b62968c59b46a6.tar.gz", "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" + }, + "sh": { + "branch": "main", + "repo": "git@code.nomath.org:~/sh", + "rev": "3ea4e6459333409c60f66a5745bb472d136da741", + "type": "git" } } |