nixpkgs/pkgs/by-name/si/simple-dlna-browser/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

69 lines
1.7 KiB
Nix

{
# Derivation stuff
fetchFromGitHub,
lib,
makeWrapper,
stdenv,
# Dependencies
# Add these to the wrapper
curl,
gawk,
gnugrep,
gnused,
socat,
wget,
}:
stdenv.mkDerivation {
pname = "simple-dlna-browser";
version = "unstable-2023-01-09";
src = fetchFromGitHub {
owner = "javier-lopez";
repo = "learn";
sparseCheckout = [
"sh/tools/simple-dlna-browser"
];
rev = "666e2c402723251ba19ce9d7c11b83b06c15a2c5";
hash = "sha256-jwPAEgti5DrjNnNVW/61GGTP+QedGAjz9kPwYhMAdTk=";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
outputWrapper="$out/bin/simple-dlna-browser"
outputWrapped="$out/bin/wrapped-simple-dlna-browser"
mkdir -p $out/bin
cp sh/tools/simple-dlna-browser $outputWrapped
makeWrapper $outputWrapped $outputWrapper \
--prefix PATH : ${lib.makeBinPath [
curl
gawk
gnugrep
gnused
socat
wget
]}
# Set the program name to a fixed value
# Normally it is guessed by the filename, but we don't want it to be the name of the wrapper
sed -i -e 's/PROGNAME=".*"/PROGNAME="simple-dlna-browser"/' $outputWrapped
'';
meta = {
description = "Query dlna media servers";
longDescription = ''
A bash script that allows simple interactions with [DLNA] media servers.
It is a light-weight, CLI alternative to [VLC], [Kodi], and other players.
[DLNA]: https://en.wikipedia.org/wiki/Digital_Living_Network_Alliance
[Kodi]: https://kodi.tv/
[VLC]: https://www.videolan.org/vlc/
'';
homepage = "https://github.com/javier-lopez/learn/blob/master/sh/tools/simple-dlna-browser";
license = lib.licenses.fair;
maintainers = with lib.maintainers; [ ];
};
}