diff options
Diffstat (limited to 'tools/gha-billing/default.nix')
| -rw-r--r-- | tools/gha-billing/default.nix | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/tools/gha-billing/default.nix b/tools/gha-billing/default.nix deleted file mode 100644 index 73ea63e..0000000 --- a/tools/gha-billing/default.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ lib, stdenvNoCC, pkgs }: - -stdenvNoCC.mkDerivation rec { - pname = "gha-billing"; - src = ./gha-billing.py; - version = "0.1.0"; - - buildInputs = [ - (pkgs.python310.withPackages (ps: with ps; [ - requests - ])) - ]; - - propagatedBuildInputs = [ - (pkgs.python310.withPackages (ps: with ps; [ - requests - ])) - ]; - - dontUnpack = true; - dontBuild = true; - - installPhase = '' - mkdir -p $out/bin - cp $src $out/bin/${pname} - ''; - - - meta = with pkgs.lib; { - description = "CLI to get billing information for GHA."; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ ]; - }; -} |
