Merge pull request #118185 from catern/num-utils

num-utils: init at 0.5
This commit is contained in:
Robert Hensing 2021-07-04 09:30:23 +02:00 committed by GitHub
commit 90d0160f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -2952,6 +2952,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 { };