blob: 45803969c17e50a39e66c445399fab03b0113ce2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ 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 ];
};
}
|