maintainers: remove email for amuckstot30 (#360059)
[NixPkgs.git] / pkgs / os-specific / linux / kernel / gpio-utils.nix
blob88b8efbe540c2cd7d0d2de2ca5db70796ce0b9e2
1 { lib, stdenv, linux }:
3 stdenv.mkDerivation {
4   pname = "gpio-utils";
5   version = linux.version;
7   inherit (linux) src makeFlags;
9   preConfigure = ''
10     cd tools/gpio
11   '';
13   separateDebugInfo = true;
14   installFlags = [ "install" "DESTDIR=$(out)" "bindir=/bin" ];
16   meta = with lib; {
17     description = "Linux tools to inspect the gpiochip interface";
18     maintainers = with maintainers; [ kwohlfahrt ];
19     platforms = platforms.linux;
20     license = licenses.gpl2Only;
21   };