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

48 lines
1.5 KiB
Nix
Raw Normal View History

2014-06-23 16:12:10 +02:00
{stdenv, fetchurl, fuse, bison, flex_2_5_35, openssl, python, ncurses, readline,
autoconf, automake, libtool, pkgconfig, zlib, libaio}:
let
2012-12-04 18:54:03 +01:00
s = # Generated upstream information
rec {
baseName="glusterfs";
2014-06-23 16:12:10 +02:00
version="3.5.0";
2013-10-20 19:10:25 +02:00
name="${baseName}-${version}";
2014-06-23 16:12:10 +02:00
url="http://download.gluster.org/pub/gluster/glusterfs/3.5/3.5.0/glusterfs-3.5.0.tar.gz";
sha256="0d9jlgxg19f2ajf5i4yw4f91n161rsi8fm95442ckci3xnz21zir";
2012-12-04 18:54:03 +01:00
};
buildInputs = [
2014-06-23 16:12:10 +02:00
fuse bison flex_2_5_35 openssl python ncurses readline
autoconf automake libtool pkgconfig zlib libaio
];
in
2012-12-04 18:54:03 +01:00
stdenv.mkDerivation
rec {
2012-12-04 18:54:03 +01:00
inherit (s) name version;
inherit buildInputs;
2014-06-23 16:12:10 +02:00
preConfigure = ''
./autogen.sh
'';
configureFlags = [
''--with-mountutildir="$out/sbin"''
];
2014-06-23 16:12:10 +02:00
preInstall = ''
substituteInPlace api/examples/Makefile --replace '$(DESTDIR)' $out
substituteInPlace geo-replication/syncdaemon/Makefile --replace '$(DESTDIR)' $out
substituteInPlace geo-replication/syncdaemon/Makefile --replace '$(DESTDIR)' $out
substituteInPlace xlators/features/glupy/examples/Makefile --replace '$(DESTDIR)' $out
substituteInPlace xlators/features/glupy/src/Makefile --replace '$(DESTDIR)' $out
'';
2012-12-04 18:54:03 +01:00
src = fetchurl {
inherit (s) url sha256;
};
meta = {
2012-12-04 18:54:03 +01:00
inherit (s) version;
description = "Distributed storage system";
maintainers = [
2012-12-04 18:54:03 +01:00
stdenv.lib.maintainers.raskin
];
2012-12-04 18:54:03 +01:00
platforms = with stdenv.lib.platforms;
linux ++ freebsd;
};
}