mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
38 lines
871 B
Nix
38 lines
871 B
Nix
{
|
|
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;
|
|
};
|
|
}
|