biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / num-utils / default.nix
blob14784a4e8cfcda767c93b4bcd12b0c12df177480
1 { lib, stdenv, fetchurl, perl }:
3 stdenv.mkDerivation rec {
4   pname = "num-utils";
5   version = "0.5";
7   src = fetchurl {
8     url = "https://suso.suso.org/programs/num-utils/downloads/num-utils-${version}.tar.gz";
9     sha256 = "0kn6yskjww2agcqvas5l2xp55mp4njdxqkdicchlji3qzih2fn83";
10   };
12   buildInputs = [ perl ];
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   ];
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   };