nixpkgs/pkgs/tools/archivers/undmg/default.nix

29 lines
644 B
Nix
Raw Normal View History

2016-03-03 11:39:54 +01:00
{ stdenv, fetchFromGitHub, zlib, bzip2 }:
stdenv.mkDerivation rec {
version = "1.0.3";
2016-03-03 11:39:54 +01:00
name = "undmg-${version}";
src = fetchFromGitHub {
owner = "matthewbauer";
repo = "undmg";
rev = "v${version}";
sha256 = "1pxqw92h2w75d4jwiihwnkhnsfk09cddh3flgrqwh9r3ry14fgbb";
2016-03-03 11:39:54 +01:00
};
buildInputs = [ zlib bzip2 ];
setupHook = ./setup-hook.sh;
makeFlags = "PREFIX=$(out)";
2016-03-03 11:39:54 +01:00
meta = with stdenv.lib; {
2016-03-03 11:39:54 +01:00
homepage = https://github.com/matthewbauer/undmg;
description = "Extract a DMG file";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ matthewbauer lnl7 ];
2016-03-03 11:39:54 +01:00
};
}