{ 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 ]; }; }