mirror of
https://github.com/tomasriveral/Nix-Git-Cherry-Picker.git
synced 2026-08-11 18:28:40 +02:00
fix: unbound var
This commit is contained in:
@@ -13,14 +13,13 @@ outputs = { self, nixpkgs, flake-utils}:
|
||||
in {
|
||||
packages.default = pkgs.writeShellApplication {
|
||||
name = "ngcp";
|
||||
text = ./ngcp.sh;
|
||||
text = builtins.readFile ./ngcp.sh;
|
||||
runtimeInputs = with pkgs; [
|
||||
git
|
||||
libnotify
|
||||
jq
|
||||
];
|
||||
};
|
||||
mainProgram = "ngpcp";
|
||||
apps.default = {
|
||||
type = "app";
|
||||
program = "${self.packages.${system}.default}/bin/ngcp";
|
||||
|
||||
Reference in New Issue
Block a user