rinutils: update meta

This commit is contained in:
Mario Rodas 2023-04-29 23:18:00 +00:00
parent 3d54284f00
commit 0e0cae101f

View file

@ -1,17 +1,14 @@
{ { stdenv
stdenv, lib, fetchurl, , lib
cmake, perl, , fetchurl
, cmake
, perl
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "rinutils"; pname = "rinutils";
version = "0.10.2"; version = "0.10.2";
meta = with lib; {
homepage = "https://github.com/shlomif/rinutils";
license = licenses.mit;
};
src = fetchurl { src = fetchurl {
url = "https://github.com/shlomif/${pname}/releases/download/${version}/${pname}-${version}.tar.xz"; url = "https://github.com/shlomif/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-2H/hGZcit/qb1QjhNTg/8HiPvX1lXL75dXwjIS+MIXs="; sha256 = "sha256-2H/hGZcit/qb1QjhNTg/8HiPvX1lXL75dXwjIS+MIXs=";
@ -25,4 +22,13 @@ stdenv.mkDerivation rec {
substituteInPlace librinutils.pc.in \ substituteInPlace librinutils.pc.in \
--replace '$'{exec_prefix}/@RINUTILS_INSTALL_MYLIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ --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;
};
} }