mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +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.
38 lines
1006 B
Nix
38 lines
1006 B
Nix
{ stdenv
|
|
, lib
|
|
, buildPackages
|
|
, cmake
|
|
, openexr
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ilmbase";
|
|
version = lib.getVersion openexr;
|
|
|
|
# the project no longer provides separate tarballs. We may even want to merge
|
|
# the ilmbase package into openexr in the future.
|
|
inherit (openexr) src patches;
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
# fails 1 out of 1 tests with
|
|
# "lt-ImathTest: testBoxAlgo.cpp:892: void {anonymous}::boxMatrixTransform(): Assertion `b21 == b2' failed"
|
|
# at least on i686. spooky!
|
|
doCheck = stdenv.hostPlatform.isx86_64;
|
|
|
|
preConfigure = ''
|
|
# Need to cd after patches for openexr patches to apply.
|
|
cd IlmBase
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = " A library for 2D/3D vectors and matrices and other mathematical objects, functions and data types for computer graphics";
|
|
homepage = "https://www.openexr.com/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|