aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/os-specific/linux/kernel/gpio-utils.nix
blob: 447704eedc8dd2210005f719771b78b6c6025d12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, linux }:

with lib;

assert versionAtLeast linux.version "4.6";

stdenv.mkDerivation {
  name = "gpio-utils-${linux.version}";

  inherit (linux) src makeFlags;

  preConfigure = ''
    cd tools/gpio
  '';

  separateDebugInfo = true;
  installFlags = [ "install" "DESTDIR=$(out)" "bindir=/bin" ];

  meta = {
    description = "Linux tools to inspect the gpiochip interface";
    maintainers = with stdenv.lib.maintainers; [ kwohlfahrt ];
    platforms = stdenv.lib.platforms.linux;
  };
}