Merge pull request #319628 from heywoodlh/create-dmg

create-dmg: init 1.2.2
This commit is contained in:
Masum Reza 2024-08-10 01:08:11 +05:30 committed by GitHub
commit 8c8426d8e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,31 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "create-dmg";
version = "1.2.2";
src = fetchFromGitHub {
owner = "create-dmg";
repo = "create-dmg";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-oWrQT9nuFcJRwwXd5q4IqhG7M77aaazBG0+JSHAzPvw=";
};
dontBuild = true;
installFlags = [ "prefix=$(out)" ];
meta = {
description = "Shell script to build fancy DMGs";
homepage = "https://github.com/create-dmg/create-dmg";
license = lib.licenses.mit;
platforms = lib.platforms.darwin;
maintainers = with lib.maintainers; [ heywoodlh ];
changelog = "https://github.com/create-dmg/create-dmg/releases/tag/v${finalAttrs.version}";
mainProgram = "create-dmg";
};
})