mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
fcee1d0b28
Since commit 183d05a0
in 2012, this is the default.
fixes #18000
23 lines
610 B
Nix
23 lines
610 B
Nix
{ stdenv, fetchFromGitHub, cmake, fuse, zlib, bzip2, openssl, libxml2, icu } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "darling-dmg-${version}";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "darlinghq";
|
|
repo = "darling-dmg";
|
|
rev = "v${version}";
|
|
sha256 = "0x285p16zfnp0p6injw1frc8krif748sfgxhdd7gb75kz0dfbkrk";
|
|
};
|
|
|
|
buildInputs = [ cmake fuse openssl zlib bzip2 libxml2 icu ];
|
|
|
|
meta = {
|
|
homepage = http://www.darlinghq.org/;
|
|
description = "Darling lets you open OS X dmgs on Linux";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
};
|
|
}
|