From 7fded05cbea79152103e73df2fcbb405ef64e234 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Sun, 10 Nov 2013 14:30:01 +0100 Subject: New package: LDM - Lightweight device mounter Signed-off-by: Moritz Ulrich --- pkgs/os-specific/linux/ldm/default.nix | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pkgs/os-specific/linux/ldm/default.nix (limited to 'pkgs/os-specific/linux/ldm') diff --git a/pkgs/os-specific/linux/ldm/default.nix b/pkgs/os-specific/linux/ldm/default.nix new file mode 100644 index 0000000000000..df98b5260c6b7 --- /dev/null +++ b/pkgs/os-specific/linux/ldm/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchgit, udev, utillinux, mountPath ? "/media/" }: + +assert mountPath != ""; + +let + name = "ldm-0.4.2"; +in +stdenv.mkDerivation { + inherit name; + + # There is a stable release, but we'll use the lvm branch, which + # contains important fixes for LVM setups. + src = fetchgit { + url = "https://github.com/LemonBoy/ldm.git"; + rev = "26633ce07b"; + sha256 = "bb733d3b9b3bd5843b9cf1507a04a063c5aa45b398480411709fc727ae10b8b1"; + }; + + buildInputs = [ udev utillinux ]; + + preBuild = '' + substituteInPlace ldm.c \ + --replace "/mnt/" "${mountPath}" + ''; + + installPhase = '' + mkdir -p $out/bin + cp -v ldm $out/bin + ''; + + meta = { + description = "A lightweight device mounter, with libudev as only dependency"; + license = "MIT"; + + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.the-kenny ]; + }; +} -- cgit 1.4.1