mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl, buildDunePackage, ocaml, dune-configurator, pkg-config, cairo
|
|
, ApplicationServices }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "cairo2";
|
|
version = "0.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Chris00/ocaml-cairo/releases/download/${version}/cairo2-${version}.tbz";
|
|
sha256 = "sha256-QDVzUtcgXTpXNYVWQ4MMs0Xy24OP+dGaUyAYdg1GigU=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.02";
|
|
useDune2 = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ cairo dune-configurator ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ ApplicationServices ];
|
|
|
|
doCheck = !(stdenv.hostPlatform.isDarwin
|
|
# https://github.com/Chris00/ocaml-cairo/issues/19
|
|
|| lib.versionAtLeast ocaml.version "4.10");
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Chris00/ocaml-cairo";
|
|
description = "Binding to Cairo, a 2D Vector Graphics Library";
|
|
longDescription = ''
|
|
This is a binding to Cairo, a 2D graphics library with support for
|
|
multiple output devices. Currently supported output targets include
|
|
the X Window System, Quartz, Win32, image buffers, PostScript, PDF,
|
|
and SVG file output.
|
|
'';
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ jirkamarsik vbgl ];
|
|
};
|
|
}
|