nixpkgs/pkgs/tools/filesystems/djmount/default.nix

22 lines
663 B
Nix
Raw Normal View History

2015-10-14 19:20:30 +02:00
{ stdenv, fetchurl, pkgconfig, fuse }:
stdenv.mkDerivation rec {
pname = "djmount";
2015-10-14 19:20:30 +02:00
version = "0.71";
src = fetchurl {
url = "mirror://sourceforge/djmount/${version}/${pname}-${version}.tar.gz";
2015-10-14 19:20:30 +02:00
sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse];
2015-10-14 19:20:30 +02:00
meta = {
homepage = http://djmount.sourceforge.net/;
description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.jagajaga ];
license = stdenv.lib.licenses.gpl2;
};
}