lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

num-utils: init at 0.5

+31
+29
pkgs/tools/text/num-utils/default.nix
··· 1 + { lib, stdenv, fetchurl, perl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "num-utils"; 5 + version = "0.5"; 6 + 7 + src = fetchurl { 8 + url = "https://suso.suso.org/programs/num-utils/downloads/num-utils-${version}.tar.gz"; 9 + sha256 = "0kn6yskjww2agcqvas5l2xp55mp4njdxqkdicchlji3qzih2fn83"; 10 + }; 11 + 12 + buildInputs = [ perl ]; 13 + 14 + patchPhase = '' 15 + substituteInPlace Makefile --replace "-o 0 -g 0" "" --replace "\$(RPMDIR)" "" 16 + ''; 17 + makeFlags = [ 18 + "TOPDIR=${placeholder "out"}" 19 + "PERL=${perl}/bin/perl" 20 + ]; 21 + 22 + meta = with lib; { 23 + description = "Programs for dealing with numbers from the command line"; 24 + homepage = "https://suso.suso.org/xulu/Num-utils"; 25 + license = licenses.gpl2Plus; 26 + platforms = platforms.all; 27 + maintainers = [ maintainers.catern ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 2656 2656 2657 2657 numworks-udev-rules = callPackage ../os-specific/linux/numworks-udev-rules { }; 2658 2658 2659 + num-utils = callPackage ../tools/text/num-utils { }; 2660 + 2659 2661 iio-sensor-proxy = callPackage ../os-specific/linux/iio-sensor-proxy { }; 2660 2662 2661 2663 ipvsadm = callPackage ../os-specific/linux/ipvsadm { };