Merge pull request #110405 from pjjw/musl-elfutils

This commit is contained in:
Sandro
2021-02-02 14:18:21 +01:00
committed by GitHub
6 changed files with 199 additions and 16 deletions
@@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
stdenv.mkDerivation rec {
pname = "musl-fts";
version = "1.2.7";
src = fetchFromGitHub {
owner = "void-linux";
repo = "musl-fts";
rev = "v${version}";
sha256 = "Azw5qrz6OKDcpYydE6jXzVxSM5A8oYWAztrHr+O/DOE=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://github.com/void-linux/musl-fts";
description = "An implementation of fts(3) for musl-libc";
platforms = platforms.linux;
license = licenses.bsd3;
maintainers = [ maintainers.pjjw ];
};
}
@@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
stdenv.mkDerivation rec {
pname = "musl-obstack";
version = "1.2.2";
src = fetchFromGitHub {
owner = "void-linux";
repo = "musl-obstack";
rev = "v${version}";
sha256 = "v0RTnrqAmJfOeGsJFc04lqFR8QZhYiLyvy8oRYiuC80=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://github.com/void-linux/musl-obstack";
description =
"An extraction of the obstack functions and macros from GNU libiberty for use with musl-libc";
platforms = platforms.linux;
license = licenses.lgpl21Plus;
maintainers = [ maintainers.pjjw ];
};
}