mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
37 lines
866 B
Nix
37 lines
866 B
Nix
{ 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;
|
|
};
|
|
}
|