about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/eu/eudev/package.nix
blob: abac72290ca5e9db3df0931d1a9e24648a2fa71b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, gperf
, kmod
, pkg-config
, util-linux
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "eudev";
  version = "3.2.14";

  src = fetchFromGitHub {
    owner = "eudev-project";
    repo = "eudev";
    rev = "v${finalAttrs.version}";
    hash = "sha256-v/szzqrBedQPRGYkZ0lV9rslCH//uqGp4PHEF0/51Lg=";
  };

  nativeBuildInputs = [
    autoreconfHook
    gperf
    pkg-config
  ];

  buildInputs = [
    kmod
    util-linux
  ];

  configureFlags = [
    "--localstatedir=/var"
    "--sysconfdir=/etc"
  ];

  makeFlags = [
    "hwdb_bin=/var/lib/udev/hwdb.bin"
    "udevrulesdir=/etc/udev/rules.d"
  ];

  preInstall = ''
    # Disable install-exec-hook target, as it conflicts with our move-sbin
    # setup-hook

    sed -i 's;$(MAKE) $(AM_MAKEFLAGS) install-exec-hook;$(MAKE) $(AM_MAKEFLAGS);g' src/udev/Makefile
  '';

  installFlags = [
    "localstatedir=$(TMPDIR)/var"
    "sysconfdir=$(out)/etc"
    "udevconfdir=$(out)/etc/udev"
    "udevhwdbbin=$(out)/var/lib/udev/hwdb.bin"
    "udevhwdbdir=$(out)/var/lib/udev/hwdb.d"
    "udevrulesdir=$(out)/var/lib/udev/rules.d"
  ];

  meta = {
    homepage = "https://github.com/eudev-project/eudev";
    description = "A fork of udev with the aim of isolating it from init";
    longDescription = ''
      eudev is a standalone dynamic and persistent device naming support (aka
      userspace devfs) daemon that runs independently from the init
      system. eudev strives to remain init system and linux distribution
      neutral. It is currently used as the devfs manager for more than a dozen
      different linux distributions.

      This git repo is a fork of systemd repository with the aim of isolating
      udev from any particular flavor of system initialization. In this case,
      the isolation is from systemd.

      This is a project started by Gentoo developers and testing was initially
      being done mostly on OpenRC. We welcome contribution from others using a
      variety of system initializations to ensure eudev remains system
      initialization and distribution neutral. On 2021-08-20 Gentoo decided to
      abandon eudev and a new project was established on 2021-09-14 by Alpine,
      Devuan and Gentoo contributors.
    '';
    changelog = "https://github.com/eudev-project/eudev/releases/tag/${finalAttrs.src.rev}";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ raskin AndersonTorres ];
    inherit (kmod.meta) platforms;
  };
})