diff options
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 ]; - }; -} |