jj: init at c52a14eac6532ba814c88f2c8c740415293bfb1a
This commit is contained in:
parent
735f191b3b
commit
754afefc78
3 changed files with 21 additions and 0 deletions
|
@ -72,4 +72,5 @@
|
|||
|
||||
authentik = import ./authentik args;
|
||||
flipperzero-firmware = import ./flipperzero-firmware args;
|
||||
jj = import ./jj.nix args;
|
||||
} // (import ./heptapod-runner args)
|
||||
|
|
19
nix/pkgs/jj.nix
Normal file
19
nix/pkgs/jj.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
rev = "c52a14eac6532ba814c88f2c8c740415293bfb1a";
|
||||
src = (pkgs.fetchFromGitHub {
|
||||
owner = "martinvonz";
|
||||
repo = "jj";
|
||||
inherit rev;
|
||||
sha256 = "1lzx4g34m2bz79jn3lqr534qwqg2wy64nxbjm2jz8razh1b3circ";
|
||||
}) // {
|
||||
shortRev = rev;
|
||||
};
|
||||
flake = (import "${src}/flake.nix").outputs {
|
||||
self = src;
|
||||
nixpkgs = pkgs;
|
||||
};
|
||||
fromFlake = (flake.overlay pkgs pkgs).jujutsu;
|
||||
in
|
||||
fromFlake
|
|
@ -47,6 +47,7 @@ in
|
|||
gopls
|
||||
gotools
|
||||
graphicsmagick-imagemagick-compat
|
||||
jj
|
||||
vault
|
||||
youtube-dl
|
||||
] ++ lib.optionals isLinux [
|
||||
|
|
Loading…
Reference in a new issue