File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
pkgs/by-name/ne/net-news-wire Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 44 fetchurl ,
55 unzip ,
66 nix-update-script ,
7+ makeBinaryWrapper ,
78} :
89
910stdenvNoCC . mkDerivation rec {
1011 pname = "net-news-wire" ;
11- version = "6.1.8 " ;
12+ version = "6.1.9 " ;
1213
1314 src = fetchurl {
1415 url = "https://github.com/Ranchero-Software/NetNewsWire/releases/download/mac-${ version } /NetNewsWire${ version } .zip" ;
15- hash = "sha256-/xhy0gF2YHYBVPUAlwySH0/yIelMNeFlU7Ya/ADx1NI =" ;
16+ hash = "sha256-wG1/EpsK1CMXDTM/WlNFBBUVq6IUSj0GEkqY5Azf/ls =" ;
1617 } ;
1718
1819 sourceRoot = "." ;
1920
20- nativeBuildInputs = [ unzip ] ;
21+ nativeBuildInputs = [
22+ unzip
23+ makeBinaryWrapper
24+ ] ;
2125
2226 installPhase = ''
2327 runHook preInstall
2428 mkdir -p $out/Applications
2529 cp -R NetNewsWire.app $out/Applications/
30+ mkdir -p $out/bin
31+ makeWrapper $out/Applications/NetNewsWire.app/Contents/MacOS/NetNewsWire $out/bin/net-news-wire
2632 runHook postInstall
2733 '' ;
2834
You can’t perform that action at this time.
0 commit comments