mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ addOpenGLRunpath
|
|
, cmake
|
|
, allowedPatternsPath ? (formats.json { }).generate "patterns.json" allowedPatterns
|
|
, allowedPatterns ? rec {
|
|
# This config is just an example.
|
|
# When the hook observes either of the following requiredSystemFeatures:
|
|
nvidia-gpu.onFeatures = [ "gpu" "nvidia-gpu" "opengl" "cuda" ];
|
|
# It exposes these paths in the sandbox:
|
|
nvidia-gpu.paths = [
|
|
addOpenGLRunpath.driverLink
|
|
"/dev/dri"
|
|
"/dev/nvidia*"
|
|
"/dev/video*"
|
|
];
|
|
nvidia-gpu.unsafeFollowSymlinks = true;
|
|
}
|
|
, buildPackages
|
|
, formats
|
|
, lib
|
|
, nix
|
|
, nixosTests
|
|
, python3Packages
|
|
, makeWrapper
|
|
, runCommand
|
|
}:
|
|
|
|
|
|
let
|
|
attrs = builtins.fromTOML (builtins.readFile ./pyproject.toml);
|
|
pname = attrs.project.name;
|
|
inherit (attrs.project) version;
|
|
in
|
|
|
|
python3Packages.buildPythonApplication
|
|
{
|
|
inherit pname version;
|
|
pyproject = true;
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
python3Packages.setuptools
|
|
];
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/${pname} \
|
|
--add-flags "--patterns ${allowedPatternsPath}" \
|
|
--add-flags "--nix-exe ${lib.getExe nix}"
|
|
'';
|
|
|
|
passthru = {
|
|
inherit allowedPatterns;
|
|
tests = {
|
|
inherit (nixosTests) nix-required-mounts;
|
|
};
|
|
};
|
|
meta = {
|
|
inherit (attrs.project) description;
|
|
homepage = attrs.project.urls.Homepage;
|
|
license = lib.licenses.mit;
|
|
mainProgram = attrs.project.name;
|
|
maintainers = with lib.maintainers; [ SomeoneSerge ];
|
|
};
|
|
}
|