aboutsummaryrefslogtreecommitdiff
path: root/tools/gha-billing/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-01-25 17:47:36 -0800
committerFranck Cuny <franck@fcuny.net>2024-01-25 17:47:36 -0800
commit5a7f4b5dc1ee9ff454f0a055d413cba2f803923d (patch)
tree454d3ad64365b15c3541a49a90e51cf1c55eb950 /tools/gha-billing/default.nix
parentbump the version of go (diff)
downloadinfra-5a7f4b5dc1ee9ff454f0a055d413cba2f803923d.tar.gz
delete some unused code
Diffstat (limited to 'tools/gha-billing/default.nix')
-rw-r--r--tools/gha-billing/default.nix35
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 = [ ];
- };
-}