Skip to content

Commit d23e51d

Browse files
author
Yves Pares
committed
Added flake.nix
1 parent 79e4a42 commit d23e51d

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

flake.lock

+27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
inputs = {
3+
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
4+
};
5+
6+
outputs = inputs:
7+
let forEachSystem = inputs.nixpkgs.lib.genAttrs inputs.nixpkgs.lib.systems.flakeExposed;
8+
in {
9+
packages = forEachSystem (system:
10+
let pkgs = import inputs.nixpkgs { inherit system; };
11+
jj-fzf = pkgs.writeShellApplication {
12+
name = "jj-fzf";
13+
runtimeInputs = with pkgs; [ jujutsu fzf gawk gnused ];
14+
text = ''
15+
${./jj-fzf} "$@"
16+
'';
17+
};
18+
in {
19+
inherit jj-fzf;
20+
default = jj-fzf;
21+
}
22+
);
23+
};
24+
}

0 commit comments

Comments
 (0)