blob: da7f2da2d6fe1beb385c08374a77529720e1386a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
stdenv,
lib,
undmg,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "Skim";
version = "1.7.3";
src = fetchurl {
name = "Skim-${version}.dmg";
url = "mirror://sourceforge/project/skim-app/Skim/Skim-${version}/Skim-${version}.dmg";
hash = "sha256-AMHEzlipL0Bv68Gnyq040t4DQhPkQcmDixZ6Oo0Vobc=";
};
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;
};
}
|