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.
41 lines
847 B
Nix
41 lines
847 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, boost
|
|
, cmake
|
|
, libGL
|
|
, libGLU
|
|
, libX11
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "coin";
|
|
version = "4.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coin3d";
|
|
repo = "coin";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-dUFmcUOdNc3ZFtr+Hnh3Q3OY/JA/WxmiRJiU2RFSSus=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
boost
|
|
libGL
|
|
libGLU
|
|
] ++ lib.optional stdenv.hostPlatform.isLinux libX11;
|
|
|
|
cmakeFlags = [ "-DCOIN_USE_CPACK=OFF" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/coin3d/coin";
|
|
description = "High-level, retained-mode toolkit for effective 3D graphics development";
|
|
mainProgram = "coin-config";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ gebner ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
})
|