mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
Merge pull request #31591 from matthewbauer/libtiger-fix
libtiger: fix on Darwin
This commit is contained in:
commit
1165c03fbc
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, libkate, pango, cairo, pkgconfig }:
|
{ stdenv, lib, fetchurl, libkate, pango, cairo, pkgconfig, darwin }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libtiger-0.3.4";
|
name = "libtiger-0.3.4";
|
||||||
@ -9,11 +9,13 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libkate pango cairo ];
|
buildInputs = [ libkate pango cairo ]
|
||||||
|
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.ApplicationServices;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://code.google.com/archive/p/libtiger/;
|
homepage = https://code.google.com/archive/p/libtiger/;
|
||||||
description = "A rendering library for Kate streams using Pango and Cairo";
|
description = "A rendering library for Kate streams using Pango and Cairo";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = with lib; [ matthewbauer ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user