nixpkgs/pkgs/tools/networking/minidlna/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ffmpeg_3, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext }:
2020-11-28 20:55:23 +01:00
let version = "1.3.0"; in
2015-09-12 08:24:24 +02:00
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "minidlna";
inherit version;
2012-06-24 20:24:58 +02:00
src = fetchurl {
url = "mirror://sourceforge/project/minidlna/minidlna/${version}/minidlna-${version}.tar.gz";
2020-11-28 20:55:23 +01:00
sha256 = "0qrw5ny82p5ybccw4pp9jma8nwl28z927v0j2561m0289imv1na7";
2012-06-24 20:24:58 +02:00
};
preConfigure = ''
export makeFlags="INSTALLPREFIX=$out"
'';
buildInputs = [ ffmpeg_3 flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext ];
2012-06-24 20:24:58 +02:00
2016-04-08 22:37:42 +02:00
postInstall = ''
mkdir -p $out/share/man/man{5,8}
cp minidlna.conf.5 $out/share/man/man5
cp minidlnad.8 $out/share/man/man8
'';
meta = with lib; {
description = "Media server software";
2012-06-24 20:24:58 +02:00
longDescription = ''
MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully
compliant with DLNA/UPnP-AV clients.
2012-06-24 20:24:58 +02:00
'';
homepage = "https://sourceforge.net/projects/minidlna/";
2015-09-12 08:24:24 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
2012-06-24 20:24:58 +02:00
};
}