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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
812 B
Nix
Raw Normal View History

2022-03-08 18:11:32 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, dbus, libnotify, udisks2, gdk-pixbuf }:
stdenv.mkDerivation {
pname = "usermount";
version = "0.1";
2022-03-08 18:11:32 +00:00
src = fetchFromGitHub {
owner = "tom5760";
repo = "usermount";
rev = "0d6aba3c1f8fec80de502f5b92fd8b28041cc8e4";
2022-03-08 18:11:32 +00:00
sha256 = "sha256-giMHUVYdAygiemYru20VxpQixr5aGgHhevNkHvkG9z4=";
};
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;
};
}