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

37 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ffmpeg, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext }:
2017-09-02 10:40:54 +00:00
let version = "1.2.1"; in
2015-09-12 06:24:24 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "minidlna";
inherit version;
2012-06-24 18:24:58 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/minidlna/minidlna/${version}/minidlna-${version}.tar.gz";
2017-09-02 10:40:54 +00:00
sha256 = "1v1ffhmaqxpvf2vv4yyvjsks4skr9y088853awsh7ixh7ai8nf37";
2012-06-24 18:24:58 +00:00
};
preConfigure = ''
export makeFlags="INSTALLPREFIX=$out"
'';
buildInputs = [ ffmpeg flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext ];
2012-06-24 18:24:58 +00:00
2016-04-08 20:37:42 +00: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
'';
2015-09-12 06:24:24 +00:00
meta = with stdenv.lib; {
description = "Media server software";
2012-06-24 18:24:58 +00:00
longDescription = ''
MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully
compliant with DLNA/UPnP-AV clients.
2012-06-24 18:24:58 +00:00
'';
2017-09-02 10:40:54 +00:00
homepage = https://sourceforge.net/projects/minidlna/;
2015-09-12 06:24:24 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
2012-06-24 18:24:58 +00:00
};
}