Files
nixpkgs/pkgs/by-name/un/undmg/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
826 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
zlib,
bzip2,
lzfse,
xz,
pkg-config,
}:
stdenv.mkDerivation {
pname = "undmg";
version = "1.1.0-unstable-2024-08-02";
src = fetchFromGitHub {
owner = "matthewbauer";
repo = "undmg";
rev = "0d92602b694f810fa4b137d87c743f345b303a14";
hash = "sha256-eLxI3enf8EAgQePXvWxw8kOMr7KP2Q1Rsxy++v16zQI=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
zlib
bzip2
lzfse
xz
];
setupHook = ./setup-hook.sh;
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "Extract a DMG file";
homepage = "https://github.com/matthewbauer/undmg";
license = lib.licenses.gpl3;
mainProgram = "undmg";
maintainers = with lib.maintainers; [
matthewbauer
lnl7
];
platforms = lib.platforms.all;
};
}