mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 02:23:07 +03:00
mergerfs: 2.26.0 -> 2.26.1
Changes: https://github.com/trapexit/mergerfs/releases/tag/2.26.1
This commit is contained in:
parent
3561ede7f6
commit
927da26d34
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, gettext, libtool, pandoc, which, attr, libiconv }:
|
{ stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, gettext, libtool, pandoc, which, attr, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mergerfs-${version}";
|
pname = "mergerfs";
|
||||||
version = "2.26.0";
|
version = "2.26.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "trapexit";
|
owner = "trapexit";
|
||||||
repo = "mergerfs";
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1arq09rn1lmvv7gj3ymwdiygm620zdcx1jh2qpa1dxrdg8xrwqa9";
|
sha256 = "16dgm2n36n6k7s1nzprzsv5bdckk0x2s08qpcvc42ny6jbivpjn3";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -17,21 +17,20 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [ attr libiconv ];
|
buildInputs = [ attr libiconv ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
cat > src/version.hpp <<EOF
|
echo "${version}" > VERSION
|
||||||
#pragma once
|
|
||||||
static const char MERGERFS_VERSION[] = "${version}";
|
|
||||||
EOF
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" "XATTR_AVAILABLE=1" ];
|
makeFlags = [ "PREFIX=${placeholder "out"}" "XATTR_AVAILABLE=1" ];
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
ln -s $out/bin/mergerfs $out/bin/mount.fuse.mergerfs
|
ln -srf $out/bin/mergerfs $out/bin/mount.fuse.mergerfs
|
||||||
|
ln -srf $out/bin/mergerfs $out/bin/mount.mergerfs
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A FUSE based union filesystem";
|
description = "A FUSE based union filesystem";
|
||||||
homepage = https://github.com/trapexit/mergerfs;
|
homepage = "https://github.com/trapexit/mergerfs";
|
||||||
license = stdenv.lib.licenses.isc;
|
license = stdenv.lib.licenses.isc;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ jfrankenau makefu ];
|
maintainers = with stdenv.lib.maintainers; [ jfrankenau makefu ];
|
||||||
|
Loading…
Reference in New Issue
Block a user