undmg: format

This commit is contained in:
DontEatOreo 2024-08-02 20:51:53 +03:00
parent 9307b49d29
commit 53774f1026
No known key found for this signature in database
GPG Key ID: 0DB5361BEEE530AB

View File

@ -1,4 +1,12 @@
{ lib, stdenv, fetchFromGitHub, zlib, bzip2, lzfse, pkg-config }:
{
lib,
stdenv,
fetchFromGitHub,
zlib,
bzip2,
lzfse,
pkg-config,
}:
stdenv.mkDerivation rec {
version = "1.1.0";
@ -13,7 +21,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ zlib bzip2 lzfse ];
buildInputs = [
zlib
bzip2
lzfse
];
setupHook = ./setup-hook.sh;
@ -24,7 +36,10 @@ stdenv.mkDerivation rec {
description = "Extract a DMG file";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ matthewbauer lnl7 ];
maintainers = with maintainers; [
matthewbauer
lnl7
];
mainProgram = "undmg";
};
}