forked from mirrors/nixpkgs
usermount: New Package.
A simple tool to automatically mount removable drives using UDisks2 and D-Bus. https://github.com/tom5760/usermount
This commit is contained in:
parent
4a2936e74d
commit
29da3bce27
28
pkgs/os-specific/linux/usermount/default.nix
Normal file
28
pkgs/os-specific/linux/usermount/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchgit, pkgconfig, dbus, libnotify, udisks2, gdk_pixbuf }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "usermount-0.1";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/tom5760/usermount.git";
|
||||
rev = "0d6aba3c1f8fec80de502f5b92fd8b28041cc8e4";
|
||||
sha256 = "1bzxwq83ikljnv0f55siyd6rd0gs9v7jl9947lw6s1npa63x3b55";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig dbus libnotify udisks2 gdk_pixbuf ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-DENABLE_NOTIFICATIONS" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv usermount $out/bin/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/tom5760/usermount;
|
||||
description = "A simple tool to automatically mount removable drives using UDisks2 and D-Bus.";
|
||||
license = "MIT";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||
};
|
||||
}
|
|
@ -7589,6 +7589,8 @@ let
|
|||
|
||||
usbutils = callPackage ../os-specific/linux/usbutils { };
|
||||
|
||||
usermount = callPackage ../os-specific/linux/usermount { };
|
||||
|
||||
utillinux = lowPrio (callPackage ../os-specific/linux/util-linux {
|
||||
ncurses = null;
|
||||
perl = null;
|
||||
|
|
Loading…
Reference in a new issue