diff options
author | Franck Cuny <fcuny@roblox.com> | 2024-05-06 14:09:41 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@roblox.com> | 2024-05-06 14:09:41 -0700 |
commit | 1f0173c6c25b4f5ebc8c6495fb08010764a0afff (patch) | |
tree | cbab43d29d9cfe3b0d71826c50496129af37d745 /packages | |
parent | just moving stuff around (diff) | |
download | world-1f0173c6c25b4f5ebc8c6495fb08010764a0afff.tar.gz |
more deletion
Diffstat (limited to 'packages')
-rw-r--r-- | packages/robloxenv/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/packages/robloxenv/default.nix b/packages/robloxenv/default.nix deleted file mode 100644 index 2b691e4..0000000 --- a/packages/robloxenv/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ lib, python3 }: - -python3.pkgs.buildPythonApplication rec { - pname = "robloxenv"; - src = ./robloxenv.py; - version = "0.1.0"; - format = "other"; - - buildInputs = [ python3 ]; - propagatedBuildInputs = with python3.pkgs; [ - requests - click - ]; - - dontUnpack = true; - dontBuild = true; - - installPhase = '' - mkdir -p $out/bin - cp $src $out/bin/${pname} - chmod +x $out/bin/${pname} - ''; - - meta = with lib; { - description = "This is a tool."; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ fcuny ]; - }; -} |