nixpkgs/pkgs/tools/misc/ipad_charge/default.nix
Mikael Brockman d4f65c390b
ipad_charge: enable installation udev rules
Note that you need to add this package to your
`services.udev.packages` list rather than your
`environment.systemPackages` for the udev rules to take effect.

It might be worthwhile giving this its own configuration option, which
could be documented in `man configuration.nix`.
2019-02-21 09:33:18 +02:00

43 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, libusb1 }:
stdenv.mkDerivation rec {
name = "ipad_charge-${version}";
version = "2015-02-03";
src = fetchFromGitHub {
sha256 = "0f40hqx1dbqpwrhyf42h5982jwqv8j5zp5hwwakz6600hyqvnnz7";
rev = "bb24e1c3a79016cfdffb9d28189485766d655ec6";
repo = "ipad_charge";
owner = "mkorenkov";
};
buildInputs = [ libusb1 ];
postPatch = ''
substituteInPlace Makefile \
--replace " -o root -g root" "" \
--replace "/usr" "$out" \
--replace "/etc/udev" "$out/lib/udev"
substituteInPlace *.rules \
--replace "/usr" "$out"
'';
enableParallelBuilding = true;
preInstall = ''
mkdir -p $out/{bin,lib/udev/rules.d}
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Apple device USB charging utility for Linux";
longDescription = ''
USB charging control utility used to enable/disable charging of an Apple
device connected to USB port. For a list of supported devices, see
https://github.com/mkorenkov/ipad_charge#supported-devices.
'';
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}