mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
Merge pull request #50904 from Pneumaticat/lizardfs-update
LizardFS: 3.11.3 -> 3.12.0, add Berkeley DB support
This commit is contained in:
commit
3a393eecaf
@ -1,8 +1,10 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
|
, fetchzip
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, python
|
, python
|
||||||
|
, db
|
||||||
, fuse
|
, fuse
|
||||||
, asciidoc
|
, asciidoc
|
||||||
, libxml2
|
, libxml2
|
||||||
@ -16,28 +18,46 @@
|
|||||||
, zlib # optional
|
, zlib # optional
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
|
# See https://github.com/lizardfs/lizardfs/blob/3.12/cmake/Libraries.cmake
|
||||||
|
# We have to download it ourselves, as the build script normally does a download
|
||||||
|
# on-build, which is not good
|
||||||
|
spdlog = fetchzip {
|
||||||
|
name = "spdlog-0.14.0";
|
||||||
|
url = "https://github.com/gabime/spdlog/archive/v0.14.0.zip";
|
||||||
|
sha256 = "13730429gwlabi432ilpnja3sfvy0nn2719vnhhmii34xcdyc57q";
|
||||||
|
};
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
name = "lizardfs-${version}";
|
name = "lizardfs-${version}";
|
||||||
version = "3.11.3";
|
version = "3.12.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lizardfs";
|
owner = "lizardfs";
|
||||||
repo = "lizardfs";
|
repo = "lizardfs";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1njgj242vgpdqb1di321jfqk4al5lk72x2iyp0nldy7h6r98l2ww";
|
sha256 = "0zk73wmx82ari3m2mv0zx04x1ggsdmwcwn7k6bkl5c0jnxffc4ax";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
|
||||||
[ cmake fuse asciidoc libxml2 libxslt docbook_xml_dtd_412 docbook_xsl
|
|
||||||
zlib boost pkgconfig judy pam makeWrapper
|
buildInputs =
|
||||||
|
[ db fuse asciidoc libxml2 libxslt docbook_xml_dtd_412 docbook_xsl
|
||||||
|
zlib boost judy pam
|
||||||
];
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./remove-download-external.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
postUnpack = ''
|
||||||
|
mkdir $sourceRoot/external/spdlog-0.14.0
|
||||||
|
cp -R ${spdlog}/* $sourceRoot/external/spdlog-0.14.0/
|
||||||
|
chmod -R 755 $sourceRoot/external/spdlog-0.14.0/
|
||||||
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/sbin/lizardfs-cgiserver \
|
wrapProgram $out/sbin/lizardfs-cgiserver \
|
||||||
--prefix PATH ":" "${python}/bin"
|
--prefix PATH ":" "${python}/bin"
|
||||||
|
|
||||||
# mfssnapshot and mfscgiserv are deprecated
|
|
||||||
rm $out/bin/mfssnapshot $out/sbin/mfscgiserv
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
From d3f8111ade372c1eb7f3973031f59198508fb588 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Kevin Liu <kevin@potatofrom.space>
|
||||||
|
Date: Thu, 23 Aug 2018 10:31:42 -0400
|
||||||
|
Subject: [PATCH] Remove download_external for spdlog
|
||||||
|
|
||||||
|
---
|
||||||
|
cmake/Libraries.cmake | 5 -----
|
||||||
|
1 file changed, 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/cmake/Libraries.cmake b/cmake/Libraries.cmake
|
||||||
|
index 1f951e59..2134444a 100644
|
||||||
|
--- a/cmake/Libraries.cmake
|
||||||
|
+++ b/cmake/Libraries.cmake
|
||||||
|
@@ -7,11 +7,6 @@ if(ENABLE_TESTS)
|
||||||
|
"ef5e700c8a0f3ee123e2e0209b8b4961")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
-download_external(SPDLOG "spdlog-0.14.0"
|
||||||
|
- "https://github.com/gabime/spdlog/archive/v0.14.0.zip"
|
||||||
|
- "f213d83c466aa7044a132e2488d71b11"
|
||||||
|
- "spdlog-1")
|
||||||
|
-
|
||||||
|
# Find standard libraries
|
||||||
|
find_package(Socket REQUIRED)
|
||||||
|
find_package(Threads REQUIRED)
|
Loading…
Reference in New Issue
Block a user