Unverified Commit 53774f10 authored by DontEatOreo's avatar DontEatOreo
Browse files

undmg: format

parent 9307b49d
Loading
Loading
Loading
Loading
+18 −3
Original line number Diff line number Diff line
{ 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";
  };
}