summary refs log tree commit diff
path: root/pkgs/tools/networking/fuppes
diff options
context:
space:
mode:
authorNicolas Pierron <nicolas.b.pierron@gmail.com>2011-01-30 16:45:42 +0000
committerNicolas Pierron <nicolas.b.pierron@gmail.com>2011-01-30 16:45:42 +0000
commit08fd6e32c96cdbad7c508e4daddfc52dfcaea81f (patch)
tree6bf5b4a9c16e792461de7c842838c8a59cae9b5c /pkgs/tools/networking/fuppes
parent4a5c37a70f18dc1962a6edef562ff537bf158fcc (diff)
downloadnixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.tar
nixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.tar.gz
nixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.tar.bz2
nixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.tar.lz
nixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.tar.xz
nixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.tar.zst
nixpkgs-08fd6e32c96cdbad7c508e4daddfc52dfcaea81f.zip
Add fuppes-0.660: UPnP A/V Media Server.
svn path=/nixpkgs/trunk/; revision=25728
Diffstat (limited to 'pkgs/tools/networking/fuppes')
-rw-r--r--pkgs/tools/networking/fuppes/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/tools/networking/fuppes/default.nix b/pkgs/tools/networking/fuppes/default.nix
new file mode 100644
index 00000000000..dca3b40ef5f
--- /dev/null
+++ b/pkgs/tools/networking/fuppes/default.nix
@@ -0,0 +1,45 @@
+{stdenv, fetchurl, pkgconfig, pcre, libxml2, sqlite, ffmpeg, imagemagick,
+exiv2, mp4v2, lame, libvorbis, flac, libmad, faad2}:
+
+stdenv.mkDerivation rec {
+  name = "fuppes-0.660";
+  src = fetchurl {
+    url = mirror://sourceforge/project/fuppes/fuppes/SVN-660/fuppes-0.660.tar.gz;
+    sha256 = "1c385b29878927e5f1e55ae2c9ad284849d1522d9517a88e34feb92bd5195173";
+  };
+
+  buildInputs = [
+    pkgconfig pcre libxml2 sqlite ffmpeg imagemagick exiv2 mp4v2 lame
+    libvorbis flac libmad faad2
+  ];
+
+  configureFlags = [
+    "--enable-ffmpegthumbnailer"
+    "--enable-magickwand"
+    "--enable-exiv2"
+    "--enable-transcoder-ffmpeg"
+    "--enable-mp4v2"
+    "--enable-lame"
+    "--enable-vorbis"
+    "--enable-flac"
+    "--enable-mad"
+    "--enable-faad"
+  ];
+
+  meta = {
+    description = "UPnP A/V Media Server";
+    longDescription = ''
+      FUPPES is a free, multiplatform UPnP A/V Media Server.
+
+      FUPPES supports a wide range of UPnP MediaRenderers as well as
+      on-the-fly transcoding of various audio, video and image formats.
+
+      FUPPES also includes basic DLNA support.
+    '';
+    homepage = http://fuppes.ulrich-voelkel.de/;
+    license = stdenv.lib.licenses.gpl2;
+
+    maintainers = [ stdenv.lib.maintainers.pierron ];
+    platforms = stdenv.lib.platforms.all;
+  };
+}