summary refs log tree commit diff
path: root/pkgs/os-specific/linux/udisks-glue
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2013-10-02 14:48:40 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2013-10-02 15:40:57 +0000
commitfabc7438f1da336100bd99a78fb07e9de9b307fa (patch)
treea62b6b0b10f782b7404986e8a4e3014edb09f421 /pkgs/os-specific/linux/udisks-glue
parentd774f841531e3402c210bb23b833d12e555082ef (diff)
downloadnixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.tar
nixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.tar.gz
nixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.tar.bz2
nixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.tar.lz
nixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.tar.xz
nixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.tar.zst
nixpkgs-fabc7438f1da336100bd99a78fb07e9de9b307fa.zip
Added udisks-glue, a tool to associate udisks-events to actions
Diffstat (limited to 'pkgs/os-specific/linux/udisks-glue')
-rw-r--r--pkgs/os-specific/linux/udisks-glue/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/udisks-glue/default.nix b/pkgs/os-specific/linux/udisks-glue/default.nix
new file mode 100644
index 00000000000..9f99d5e9f20
--- /dev/null
+++ b/pkgs/os-specific/linux/udisks-glue/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig, automake, autoconf, udisks, dbus_glib, glib, confuse }:
+
+stdenv.mkDerivation {
+  name = "udisks-glue-1.3.5";
+
+  src = fetchurl {
+    url = "https://github.com/fernandotcl/udisks-glue/archive/release-1.3.5.tar.gz";
+    sha256 = "317d25bf249278dc8f6a5dcf18f760512427c772b9afe3cfe34e6e1baa258176";
+  };
+
+  buildInputs = [ automake autoconf pkgconfig udisks dbus_glib glib confuse ];
+
+  preConfigure = "sh autogen.sh";
+
+  meta = {
+    homepage = https://github.com/fernandotcl/udisks-glue;
+    description = "A tool to associate udisks events to user-defined actions";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [pSub];
+    license = "free";
+  };
+}