summary refs log blame commit diff
path: root/pkgs/os-specific/linux/usermount/default.nix
blob: 94e5d998cd0115617023eb6d80be53b03efba5f2 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                      
                                                                    

    

                                                      









                                                    
                                                                                                  
                                      



                                                             
{ 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;
    maintainers = with stdenv.lib.maintainers; [ the-kenny ];
  };
}