lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 23 lines 771 B view raw
1{ stdenv, fetchurl, pkgconfig, automake, autoconf, udisks1, dbus-glib, glib, confuse }: 2 3stdenv.mkDerivation { 4 name = "udisks-glue-1.3.5"; 5 6 src = fetchurl { 7 url = "https://github.com/fernandotcl/udisks-glue/archive/release-1.3.5.tar.gz"; 8 sha256 = "317d25bf249278dc8f6a5dcf18f760512427c772b9afe3cfe34e6e1baa258176"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig automake autoconf ]; 12 buildInputs = [ udisks1 dbus-glib glib confuse ]; 13 14 preConfigure = "sh autogen.sh"; 15 16 meta = { 17 homepage = https://github.com/fernandotcl/udisks-glue; 18 description = "A tool to associate udisks events to user-defined actions"; 19 platforms = stdenv.lib.platforms.linux; 20 maintainers = with stdenv.lib.maintainers; [pSub]; 21 license = stdenv.lib.licenses.free; 22 }; 23}