Merge pull request #229019 from r-ryantm/auto-update/rinutils

rinutils: 0.10.1 -> 0.10.2
This commit is contained in:
Mario Rodas 2023-04-29 21:55:33 -05:00 committed by GitHub
commit ae191e98f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,17 @@
{
stdenv, lib, fetchurl,
cmake, perl,
{ stdenv
, lib
, fetchurl
, cmake
, perl
}:
stdenv.mkDerivation rec {
pname = "rinutils";
version = "0.10.1";
meta = with lib; {
homepage = "https://github.com/shlomif/rinutils";
license = licenses.mit;
};
version = "0.10.2";
src = fetchurl {
url = "https://github.com/shlomif/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-MewljOmd57u+efMzjOcwSNrEVCUEXrK9DWvZLRuLmvs=";
sha256 = "sha256-2H/hGZcit/qb1QjhNTg/8HiPvX1lXL75dXwjIS+MIXs=";
};
nativeBuildInputs = [ cmake perl ];
@ -25,4 +22,13 @@ stdenv.mkDerivation rec {
substituteInPlace librinutils.pc.in \
--replace '$'{exec_prefix}/@RINUTILS_INSTALL_MYLIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
'';
meta = with lib; {
description = "C11 / gnu11 utilities C library by Shlomi Fish / Rindolf";
homepage = "https://github.com/shlomif/rinutils";
changelog = "https://github.com/shlomif/rinutils/raw/${version}/NEWS.asciidoc";
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}