aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/os-specific/linux/eudev/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/os-specific/linux/eudev/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/os-specific/linux/eudev/default.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/os-specific/linux/eudev/default.nix b/infra/libkookie/nixpkgs/pkgs/os-specific/linux/eudev/default.nix
new file mode 100644
index 000000000000..696dfd275c74
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/os-specific/linux/eudev/default.nix
@@ -0,0 +1,60 @@
+{stdenv, fetchurl, pkgconfig, glib, gperf, util-linux, kmod}:
+let
+ s = # Generated upstream information
+ rec {
+ baseName="eudev";
+ version = "3.2.9";
+ name="${baseName}-${version}";
+ url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz";
+ sha256 = "1z6lfhhbjs6j7pbp6ybn17ywjsdl87ql6g1p3m2y26aa10cqcqc9";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ glib gperf util-linux kmod
+ ];
+in
+stdenv.mkDerivation {
+ inherit (s) name version;
+ inherit nativeBuildInputs buildInputs;
+ src = fetchurl {
+ inherit (s) url sha256;
+ };
+ patches = [
+ ];
+
+ 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"
+ ];
+ enableParallelBuilding = true;
+ meta = {
+ inherit (s) version;
+ description = ''An udev fork by Gentoo'';
+ license = stdenv.lib.licenses.gpl2Plus ;
+ maintainers = [stdenv.lib.maintainers.raskin];
+ platforms = stdenv.lib.platforms.linux;
+ homepage = ''https://www.gentoo.org/proj/en/eudev/'';
+ downloadPage = ''http://dev.gentoo.org/~blueness/eudev/'';
+ updateWalker = true;
+ };
+}