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 19:55:23 +00:00
let version = "1.3.0"; 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";
2020-11-28 19:55:23 +00:00
sha256 = "0qrw5ny82p5ybccw4pp9jma8nwl28z927v0j2561m0289imv1na7";
2012-06-24 18:24:58 +00:00
};
preConfigure = ''
export makeFlags="INSTALLPREFIX=$out"
'';
buildInputs = [ ffmpeg_3 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
'';
meta = with 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
'';
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
};
}