skimpdf: init at 1.7.2

This commit is contained in:
YvesStraten 2023-12-27 14:00:15 +08:00
parent 4f2747cccf
commit 4b094f5153
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ stdenv
, lib
, undmg
, fetchurl
}:
stdenv.mkDerivation rec {
pname = "Skim";
version = "1.7.2";
src = fetchurl {
name = "Skim-${version}.dmg";
url = "mirror://sourceforge/project/skim-app/Skim/Skim-${version}/Skim-${version}.dmg";
sha256 = "t/A3Bd7mQ8hFGdbpQou4ru9i5jX4HaYOXgMvfPAUEYc=";
};
nativeBuildInputs = [ undmg ];
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -R Skim.app $out/Applications
runHook postInstall
'';
meta = with lib; {
description = "Skim is a PDF reader and note-taker for OS X";
homepage = "https://skim-app.sourceforge.io/";
license = licenses.bsd0;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
mainProgram = "Skim.app";
maintainers = with maintainers; [ YvesStraten ];
platforms = platforms.darwin;
};
}