nixpkgs/pkgs/by-name/cr/create-dmg/package.nix
2024-08-08 14:11:13 -06:00

32 lines
771 B
Nix

{
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";
};
})