Merge pull request #144750 from S-NA/updates/nilfs-utils
nilfs-utils: 2.2.7 -> 2.2.8
This commit is contained in:
commit
8a5990d5ef
1 changed files with 17 additions and 40 deletions
|
@ -1,46 +1,23 @@
|
|||
{ lib, stdenv, fetchurl, fetchpatch, libuuid, libselinux }:
|
||||
let
|
||||
sourceInfo = rec {
|
||||
version = "2.2.7";
|
||||
url = "http://nilfs.sourceforge.net/download/nilfs-utils-${version}.tar.bz2";
|
||||
sha256 = "01f09bvjk2crx65pxmxiw362wkkl3v2v144dfn3i7bk5gz253xic";
|
||||
baseName = "nilfs-utils";
|
||||
name = "${baseName}-${version}";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
src = fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.sha256;
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libuuid, libselinux }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nilfs-utils";
|
||||
version = "2.2.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nilfs-dev";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "094mw7dsyppyiyzfdnf3f5hlkrh4bidk1kvvpn1kcvw5vn2xpfk7";
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
buildInputs = [libuuid libselinux];
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
preConfigure = ''
|
||||
sed -e '/sysconfdir=\/etc/d; ' -i configure
|
||||
sed -e "s@sbindir=/sbin@sbindir=$out/sbin@" -i configure
|
||||
sed -e 's@/sbin/@'"$out"'/sbin/@' -i ./lib/cleaner*.c
|
||||
'';
|
||||
buildInputs = [ libuuid libselinux ];
|
||||
|
||||
patches = [
|
||||
# Fix w/musl
|
||||
(fetchpatch {
|
||||
url = "https://github.com/nilfs-dev/nilfs-utils/commit/115fe4b976858c487cf83065f513d8626089579a.patch";
|
||||
sha256 = "0h89jz9l5d4rqj647ljbnv451l4ncqpsvzj0v70mn5391hfwsjlv";
|
||||
})
|
||||
(fetchpatch {
|
||||
url = "https://github.com/nilfs-dev/nilfs-utils/commit/51b32c614be9e98c32de7f531ee600ca0740946f.patch";
|
||||
sha256 = "1ycq83c6jjy74aif47v075k5y2szzwhq6mbcrpd1z4b4i1x6yhpn";
|
||||
})
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--with-libmount"
|
||||
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||
# AC_FUNC_MALLOC is broken on cross builds.
|
||||
"ac_cv_func_malloc_0_nonnull=yes"
|
||||
"ac_cv_func_realloc_0_nonnull=yes"
|
||||
installFlags = [
|
||||
"sysconfdir=${placeholder "out"}/etc"
|
||||
"root_sbindir=${placeholder "out"}/sbin"
|
||||
];
|
||||
|
||||
# FIXME: https://github.com/NixOS/patchelf/pull/98 is in, but stdenv
|
||||
|
@ -49,7 +26,7 @@ stdenv.mkDerivation {
|
|||
# To make sure patchelf doesn't mistakenly keep the reference via
|
||||
# build directory
|
||||
postInstall = ''
|
||||
find . -name .libs | xargs rm -rf
|
||||
find . -name .libs -exec rm -rf -- {} +
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue