1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/filesystems/darling-dmg/default.nix

25 lines
671 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, fuse, zlib, bzip2, openssl, libxml2, icu } :
2015-12-08 23:02:59 +00:00
stdenv.mkDerivation rec {
name = "darling-dmg-${version}";
version = "1.0.4";
2015-12-08 23:02:59 +00:00
src = fetchFromGitHub {
owner = "darlinghq";
repo = "darling-dmg";
rev = "v${version}";
sha256 = "0x285p16zfnp0p6injw1frc8krif748sfgxhdd7gb75kz0dfbkrk";
2015-12-08 23:02:59 +00:00
};
2015-12-08 23:02:59 +00:00
buildInputs = [ cmake fuse openssl zlib bzip2 libxml2 icu ];
2015-12-08 23:02:59 +00:00
cmakeConfigureFlagFlags = ["-DCMAKE_BUILD_TYPE=RELEASE"];
2015-12-08 23:02:59 +00:00
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;
};
}