mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
834 B
Nix
29 lines
834 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 = "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 = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
|
};
|
|
}
|