summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorEthel Morgan <eth@ethulhu.co.uk>2020-06-09 15:32:06 +0100
committerEthel Morgan <eth@ethulhu.co.uk>2020-06-09 15:32:06 +0100
commitaa8ad8747e4304c0d902e8b92feac4ecd8ded66d (patch)
tree341303aa436424a0b193c1568b8bfe9c192ba789 /pkgs
parent781115d3b8d8cea867717074caf53333a154eab0 (diff)
update Helix package, add Jackalope package
Diffstat (limited to '')
-rw-r--r--pkgs/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 2b26b8f..2f57793 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -1,7 +1,11 @@
let
helix = builtins.fetchGit {
url = "https://github.com/ethulhu/helix";
- rev = "5a11d335465db52cdb8430abc37f4d3463122167";
+ rev = "e10d1a0d38a32fd1e5971813c7c56574abecda24";
+ };
+ jackalope = builtins.fetchGit {
+ url = "https://git.sr.ht/~eth/jackalope";
+ rev = "f87cb42937a109af552a953a0e5882a81a2c343b";
};
recipes = builtins.fetchGit {
url = "https://github.com/ethulhu/recipes.eth.moe";
@@ -10,8 +14,9 @@ let
in
pkgs: super: {
eth = {
- helix = pkgs.callPackage helix {};
- recipes = pkgs.callPackage recipes {};
+ helix = pkgs.callPackage helix {};
+ jackalope = pkgs.callPackage jackalope {};
+ recipes = pkgs.callPackage recipes {};
dwm = pkgs.callPackage ./dwm {};