mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
29 lines
797 B
Nix
29 lines
797 B
Nix
{ 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 = "0gpp0vwiwr7kgbhh26jspv3255662mnvnav6g8i2h0qxar8hf8w2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ 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 = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|