mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
40f68f68f7
Add AppKit dependency, fixes error: "ld: file not found: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit for architecture x86_64".
27 lines
705 B
Nix
27 lines
705 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, glib, Carbon, AppKit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liblqr-1";
|
|
version = "0.4.2";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "carlobaldassi";
|
|
repo = "liblqr";
|
|
rev = "v${version}";
|
|
sha256 = "10mrl5k3l2hxjhz4w93n50xwywp6y890rw2vsjcgai8627x5f1df";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Carbon AppKit ];
|
|
propagatedBuildInputs = [ glib ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://liblqr.wikidot.com";
|
|
description = "Seam-carving C/C++ library called Liquid Rescaling";
|
|
platforms = platforms.all;
|
|
license = with licenses; [ gpl3 lgpl3 ];
|
|
};
|
|
}
|