nixpkgs/pkgs/os-specific/linux/usermount/default.nix

29 lines
790 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, pkg-config, dbus, libnotify, udisks2, gdk-pixbuf }:
stdenv.mkDerivation {
name = "usermount-0.1";
src = fetchgit {
url = "https://github.com/tom5760/usermount.git";
rev = "0d6aba3c1f8fec80de502f5b92fd8b28041cc8e4";
sha256 = "0gpp0vwiwr7kgbhh26jspv3255662mnvnav6g8i2h0qxar8hf8w2";
};
nativeBuildInputs = [ pkg-config ];
2019-05-22 11:03:39 +00:00
buildInputs = [ dbus libnotify udisks2 gdk-pixbuf ];
2019-10-30 11:34:47 +00:00
NIX_CFLAGS_COMPILE = "-DENABLE_NOTIFICATIONS";
installPhase = ''
mkdir -p $out/bin
mv usermount $out/bin/
'';
meta = {
homepage = "https://github.com/tom5760/usermount";
2014-11-11 13:20:43 +00:00
description = "A simple tool to automatically mount removable drives using UDisks2 and D-Bus";
2021-01-15 14:45:37 +00:00
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};
}