about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-12 08:24:24 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-12 08:45:52 +0200
commit812f7be7dc4c6c416f8e508706365241602b3c4b (patch)
tree6864885a884eb9ec1e0b175837e633314a0513b5 /pkgs/tools
parent170fd9efcef7ce920a15f2870713eee2f08cabe4 (diff)
downloadnixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.tar
nixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.tar.gz
nixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.tar.bz2
nixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.tar.lz
nixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.tar.xz
nixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.tar.zst
nixlib-812f7be7dc4c6c416f8e508706365241602b3c4b.zip
minidlna: 1.1.4 -> 1.1.5
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/minidlna/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/networking/minidlna/default.nix b/pkgs/tools/networking/minidlna/default.nix
index 1bf009863936..c0944bb891ec 100644
--- a/pkgs/tools/networking/minidlna/default.nix
+++ b/pkgs/tools/networking/minidlna/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, ffmpeg, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext }:
 
-let version = "1.1.4"; in
+let version = "1.1.5"; in
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation {
   name = "minidlna-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/project/minidlna/minidlna/${version}/minidlna-${version}.tar.gz";
-    sha256 = "9814c04a2c506a0dd942c4218d30c07dedf90dabffbdef2d308a3f9f23545314";
+    sha256 = "16xb2nz8g1dwcail1zmpj8s426pygz0fdpd6ip6zaamv2q2asxw4";
   };
 
   preConfigure = ''
@@ -16,14 +16,14 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ ffmpeg flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Media server software";
     longDescription = ''
       MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully
       compliant with DLNA/UPnP-AV clients.
     '';
     homepage = http://sourceforge.net/projects/minidlna/;
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
   };
 }