nixpkgs/pkgs/tools/filesystems/lizardfs/default.nix

66 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, makeWrapper
, python2
2018-11-22 02:54:14 +00:00
, db
, fuse
2016-06-16 22:12:55 +00:00
, asciidoc
, libxml2
, libxslt
2016-09-02 18:57:08 +00:00
, docbook_xml_dtd_412
, docbook_xsl
, boost
, pkgconfig
, judy
, pam
, spdlog
, zlib # optional
}:
stdenv.mkDerivation rec {
pname = "lizardfs";
2018-08-23 17:49:33 +00:00
version = "3.12.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
2016-09-14 17:04:23 +00:00
rev = "v${version}";
2018-08-23 17:49:33 +00:00
sha256 = "0zk73wmx82ari3m2mv0zx04x1ggsdmwcwn7k6bkl5c0jnxffc4ax";
};
2018-08-23 17:49:33 +00:00
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
buildInputs =
2018-11-22 02:54:14 +00:00
[ db fuse asciidoc libxml2 libxslt docbook_xml_dtd_412 docbook_xsl
zlib boost judy pam spdlog python2
2016-09-02 18:57:08 +00:00
];
2018-08-23 17:49:33 +00:00
patches = [
# Use system-provided spdlog instead of downloading an old one (next two patches)
(fetchpatch {
url = "https://salsa.debian.org/debian/lizardfs/raw/d003c371/debian/patches/system-spdlog.patch";
sha256 = "1znpqqzb0k5bb7s4d7abfxzn5ry1khz8r76sb808c95cpkw91a9i";
})
(fetchpatch {
url = "https://salsa.debian.org/debian/lizardfs/raw/bfcd5bcf/debian/patches/spdlog.patch";
sha256 = "0j44rb816i6kfh3y2qdha59c4ja6wmcnlrlq29il4ybxn42914md";
})
# Fix https://github.com/lizardfs/lizardfs/issues/655
# (Remove upon update to 3.13)
(fetchpatch {
url = "https://github.com/lizardfs/lizardfs/commit/5d20c95179be09241b039050bceda3c46980c004.patch";
sha256 = "185bfcz2rjr4cnxld2yc2nxwzz0rk4x1fl1sd25g8gr5advllmdv";
})
2018-08-23 17:49:33 +00:00
];
meta = with stdenv.lib; {
homepage = "https://lizardfs.com";
description = "A highly reliable, scalable and efficient distributed file system";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = [ maintainers.rushmorem ];
};
}