num-utils: init at 0.5

This commit is contained in:
Spencer Baugh 2021-03-31 19:41:09 -04:00
parent a1d64d9419
commit caf6e184f9
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib, stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
pname = "num-utils";
version = "0.5";
src = fetchurl {
url = "https://suso.suso.org/programs/num-utils/downloads/num-utils-${version}.tar.gz";
sha256 = "0kn6yskjww2agcqvas5l2xp55mp4njdxqkdicchlji3qzih2fn83";
};
buildInputs = [ perl ];
patchPhase = ''
substituteInPlace Makefile --replace "-o 0 -g 0" "" --replace "\$(RPMDIR)" ""
'';
makeFlags = [
"TOPDIR=${placeholder "out"}"
"PERL=${perl}/bin/perl"
];
meta = with lib; {
description = "Programs for dealing with numbers from the command line";
homepage = "https://suso.suso.org/xulu/Num-utils";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = [ maintainers.catern ];
};
}

View file

@ -2656,6 +2656,8 @@ in
numworks-udev-rules = callPackage ../os-specific/linux/numworks-udev-rules { };
num-utils = callPackage ../tools/text/num-utils { };
iio-sensor-proxy = callPackage ../os-specific/linux/iio-sensor-proxy { };
ipvsadm = callPackage ../os-specific/linux/ipvsadm { };