lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 37 lines 868 B view raw
1{ 2 stdenv, 3 lib, 4 undmg, 5 fetchurl, 6}: 7stdenv.mkDerivation rec { 8 pname = "Skim"; 9 version = "1.7.9"; 10 11 src = fetchurl { 12 name = "Skim-${version}.dmg"; 13 url = "mirror://sourceforge/project/skim-app/Skim/Skim-${version}/Skim-${version}.dmg"; 14 hash = "sha256-0IfdLeH6RPxf4OZWnNltN7tvvZWbWDQaMCmazd4UUi4="; 15 }; 16 17 nativeBuildInputs = [ undmg ]; 18 19 sourceRoot = "."; 20 21 installPhase = '' 22 runHook preInstall 23 mkdir -p $out/Applications 24 cp -R Skim.app $out/Applications 25 runHook postInstall 26 ''; 27 28 meta = with lib; { 29 description = "PDF reader and note-taker for macOS"; 30 homepage = "https://skim-app.sourceforge.io/"; 31 license = licenses.bsd0; 32 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 33 mainProgram = "Skim.app"; 34 maintainers = with maintainers; [ YvesStraten ]; 35 platforms = platforms.darwin; 36 }; 37}