mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
57 lines
1.7 KiB
Nix
57 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre, makeDesktopItem }:
|
|
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
name = "tvbrowser";
|
|
exec = "tvbrowser";
|
|
icon = "tvbrowser";
|
|
comment = "Themeable and easy to use TV Guide";
|
|
desktopName = "TV-Browser";
|
|
genericName = "Electronic TV Program Guide";
|
|
categories = "AudioVideo;TV;Java;";
|
|
startupNotify = "true";
|
|
extraEntries = ''
|
|
StartupWMClass=tvbrowser-TVBrowser
|
|
'';
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "tvbrowser";
|
|
version = "4.0.1";
|
|
name = "${pname}-bin-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/TV-Browser%20Releases%20%28Java%208%20and%20higher%29/${version}/${pname}_${version}_bin.tar.gz";
|
|
sha256 = "0ahsirf6cazs5wykgbwsc6n35w6jprxyphzqmm7d370n37sb07pm";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/java/${pname}
|
|
cp -R * $out/share/java/${pname}
|
|
rm $out/share/java/${pname}/${pname}.{sh,desktop}
|
|
|
|
mkdir -p $out/share/applications
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
|
|
|
for i in 16 32 48 128; do
|
|
mkdir -p $out/share/icons/hicolor/''${i}x''${i}/apps
|
|
ln -s $out/share/java/${pname}/imgs/${pname}$i.png $out/share/icons/hicolor/''${i}x''${i}/apps/${pname}.png
|
|
done
|
|
|
|
mkdir -p $out/bin
|
|
makeWrapper ${jre}/bin/java $out/bin/${pname} \
|
|
--add-flags "-jar $out/share/java/${pname}/${pname}.jar" \
|
|
--run "cd $out/share/java/${pname}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Electronic TV Program Guide";
|
|
homepage = "https://www.tvbrowser.org/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jfrankenau ];
|
|
};
|
|
}
|