Merge pull request #319628 from heywoodlh/create-dmg
create-dmg: init 1.2.2
This commit is contained in:
@@ -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";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user