diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-05-05 09:59:11 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-05-05 09:59:11 -0700 |
| commit | c54422174f2af26d0b204cc155ef9e366baa8a33 (patch) | |
| tree | a2d09ace5a8b7a72b60c5ff195f2f0b2656d858c /packages/ipconverter/default.nix | |
| parent | some cleanup for CI (diff) | |
| download | infra-c54422174f2af26d0b204cc155ef9e366baa8a33.tar.gz | |
move ipconverter under `src`
Diffstat (limited to '')
| -rw-r--r-- | packages/ipconverter/default.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/ipconverter/default.nix b/packages/ipconverter/default.nix deleted file mode 100644 index 4580396..0000000 --- a/packages/ipconverter/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ lib, python3, stdenvNoCC, pkgs }: - -stdenvNoCC.mkDerivation rec { - pname = "ipconverter"; - version = "0.1.0"; - - src = ./ipconverter.py; - - buildInputs = with pkgs; [ python3 ]; - propagatedBuildInputs = with pkgs; [ python3 ]; - - dontUnpack = true; - dontBuild = true; - - installPhase = '' - mkdir -p $out/bin - cp $src $out/bin/${pname} - chmod a+x $out/bin/${pname} - ln -s $out/bin/${pname} $out/bin/ip2int - ln -s $out/bin/${pname} $out/bin/int2ip - ''; - - meta = with lib; { - description = "Helper script to convert an IP address to an integer."; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ fcuny ]; - }; -} |
