2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, fuse, zlib, bzip2, openssl, libxml2, icu, lzfse }:
|
2015-12-08 15:02:59 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "darling-dmg";
|
2020-10-25 02:02:27 -07:00
|
|
|
version = "1.0.4+git20200427";
|
2016-02-02 12:05:44 -08:00
|
|
|
|
2015-12-08 15:02:59 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "darlinghq";
|
|
|
|
repo = "darling-dmg";
|
2020-10-25 02:02:27 -07:00
|
|
|
rev = "71cc76c792db30328663272788c0b64aca27fdb0";
|
|
|
|
sha256 = "08iphkxlmjddrxpbm13gxyqwcrd0k65z3l1944n4pccb6qbyj8gv";
|
2015-12-08 15:02:59 -08:00
|
|
|
};
|
2016-02-02 12:05:44 -08:00
|
|
|
|
2019-01-17 04:07:46 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-10-25 02:03:38 -07:00
|
|
|
buildInputs = [ fuse openssl zlib bzip2 libxml2 icu lzfse ];
|
2016-02-02 12:05:44 -08:00
|
|
|
|
2020-10-25 02:03:38 -07:00
|
|
|
CXXFLAGS = [
|
|
|
|
"-DCOMPILE_WITH_LZFSE=1"
|
|
|
|
"-llzfse"
|
|
|
|
];
|
2019-06-05 14:16:23 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-04-24 07:56:25 -07:00
|
|
|
homepage = "https://www.darlinghq.org/";
|
2017-08-06 15:05:18 -07:00
|
|
|
description = "Darling lets you open macOS dmgs on Linux";
|
2020-10-25 02:02:27 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2020-10-25 02:04:26 -07:00
|
|
|
maintainers = with maintainers; [ Luflosi ];
|
2015-12-08 15:02:59 -08:00
|
|
|
};
|
|
|
|
}
|