about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/drbd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/drbd/default.nix')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/drbd/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/drbd/default.nix b/nixpkgs/pkgs/os-specific/linux/drbd/default.nix
new file mode 100644
index 000000000000..5e990511eed7
--- /dev/null
+++ b/nixpkgs/pkgs/os-specific/linux/drbd/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchurl, flex, systemd, perl }:
+
+stdenv.mkDerivation rec {
+  name = "drbd-8.4.4";
+
+  src = fetchurl {
+    url = "http://oss.linbit.com/drbd/8.4/${name}.tar.gz";
+    sha256 = "1w4889h1ak7gy9w33kd4fgjlfpgmp6hzfya16p1pkc13bjf22mm0";
+  };
+
+  patches = [ ./pass-force.patch ];
+
+  buildInputs = [ flex perl ];
+
+  configureFlags = [
+    "--without-distro"
+    "--without-pacemaker"
+    "--localstatedir=/var"
+    "--sysconfdir=/etc"
+  ];
+
+  preConfigure =
+    ''
+      export PATH=${systemd}/sbin:$PATH
+      substituteInPlace user/Makefile.in \
+        --replace /sbin '$(sbindir)'
+      substituteInPlace user/legacy/Makefile.in \
+        --replace '$(DESTDIR)/lib/drbd' '$(DESTDIR)$(LIBDIR)'
+      substituteInPlace user/drbdadm_usage_cnt.c --replace /lib/drbd $out/lib/drbd
+      substituteInPlace scripts/drbd.rules --replace /usr/sbin/drbdadm $out/sbin/drbdadm
+    '';
+
+  makeFlags = "SHELL=${stdenv.shell}";
+
+  installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc INITDIR=$(out)/etc/init.d";
+
+  meta = with stdenv.lib; {
+    homepage = http://www.drbd.org/;
+    description = "Distributed Replicated Block Device, a distributed storage system for Linux";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+  };
+}