chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ne / net-news-wire / package.nix
blob95873d5da0c64372bf4e417f202afbda6d0a0015
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , unzip
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "net-news-wire";
9   version = "6.1.4";
11   src = fetchurl {
12     url = "https://github.com/Ranchero-Software/NetNewsWire/releases/download/mac-${version}/NetNewsWire${version}.zip";
13     hash = "sha256-dNdbniXGre8G2/Ac0GB3GHJ2k1dEiHmAlTX3dJOEC7s=";
14   };
16   sourceRoot = ".";
18   nativeBuildInputs = [
19     unzip
20   ];
22   installPhase = ''
23     runHook preInstall
24     mkdir -p $out/Applications
25     cp -R NetNewsWire.app $out/Applications/
26     runHook postInstall
27   '';
29   meta = with lib; {
30     description = "RSS reader for macOS and iOS";
31     longDescription = ''
32       It's like podcasts — but for reading.
33       NetNewsWire shows you articles from your favorite blogs and news sites and keeps track of what you've read.
34     '';
35     homepage = "https://github.com/Ranchero-Software/NetNewsWire";
36     changelog =
37       "https://github.com/Ranchero-Software/NetNewsWire/releases/tag/mac-${version}";
38     license = licenses.mit;
39     platforms = platforms.darwin;
40     maintainers = with maintainers; [ jakuzure ];
41   };