mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
72 lines
1.5 KiB
Nix
72 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
linuxHeaders,
|
|
freebsd,
|
|
runCommandCC,
|
|
buildPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "evdev-proto";
|
|
inherit (linuxHeaders) version;
|
|
|
|
src = freebsd.ports;
|
|
|
|
sourceRoot = "${freebsd.ports.name}/devel/evdev-proto";
|
|
|
|
useTempPrefix = true;
|
|
|
|
nativeBuildInputs = [ freebsd.makeMinimal ];
|
|
|
|
ARCH = freebsd.makeMinimal.MACHINE_ARCH;
|
|
OPSYS = "FreeBSD";
|
|
_OSRELEASE = "${lib.versions.majorMinor freebsd.makeMinimal.version}-RELEASE";
|
|
|
|
AWK = "awk";
|
|
CHMOD = "chmod";
|
|
FIND = "find";
|
|
MKDIR = "mkdir -p";
|
|
PKG_BIN = "${buildPackages.pkg}/bin/pkg";
|
|
RM = "rm -f";
|
|
SED = "${buildPackages.freebsd.sed}/bin/sed";
|
|
SETENV = "env";
|
|
SH = "sh";
|
|
TOUCH = "touch";
|
|
XARGS = "xargs";
|
|
|
|
ABI_FILE = runCommandCC "abifile" { } "$CC -shared -o $out";
|
|
CLEAN_FETCH_ENV = true;
|
|
INSTALL_AS_USER = true;
|
|
NO_CHECKSUM = true;
|
|
NO_MTREE = true;
|
|
SRC_BASE = freebsd.source;
|
|
|
|
preUnpack = ''
|
|
export MAKE_JOBS_NUMBER="$NIX_BUILD_CORES"
|
|
|
|
export DISTDIR="$PWD/distfiles"
|
|
export PKG_DBDIR="$PWD/pkg"
|
|
export PREFIX="$prefix"
|
|
|
|
mkdir -p "$DISTDIR/evdev-proto"
|
|
tar -C "$DISTDIR/evdev-proto" \
|
|
-xf ${linuxHeaders.src} \
|
|
--strip-components 4 \
|
|
linux-${linuxHeaders.version}/include/uapi/linux
|
|
'';
|
|
|
|
makeFlags = [ "DIST_SUBDIR=evdev-proto" ];
|
|
|
|
postInstall = ''
|
|
mv $prefix $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Input event device header files for FreeBSD";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
platforms = platforms.freebsd;
|
|
license = licenses.gpl2Only;
|
|
};
|
|
}
|