mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Added udisks-glue, a tool to associate udisks-events to actions
This commit is contained in:
parent
d774f84153
commit
fabc7438f1
2 changed files with 24 additions and 0 deletions
22
pkgs/os-specific/linux/udisks-glue/default.nix
Normal file
22
pkgs/os-specific/linux/udisks-glue/default.nix
Normal file
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -6946,6 +6946,8 @@ let
|
|||
udisks2 = callPackage ../os-specific/linux/udisks/2-default.nix { };
|
||||
udisks = udisks1;
|
||||
|
||||
udisks_glue = callPackage ../os-specific/linux/udisks-glue { };
|
||||
|
||||
untie = callPackage ../os-specific/linux/untie { };
|
||||
|
||||
upower = callPackage ../os-specific/linux/upower {
|
||||
|
|
Loading…
Reference in a new issue