about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/filesystems/djmount/default.nix
blob: f5b0a0315dfcb0f6cb3d94df02282ae51db350bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchurl, pkg-config, fuse }:

stdenv.mkDerivation rec {
  pname = "djmount";
  version = "0.71";
  src = fetchurl {
    url = "mirror://sourceforge/djmount/${version}/${pname}-${version}.tar.gz";
    sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ fuse];

  meta = {
    homepage = "http://djmount.sourceforge.net/";
    description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices";
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.jagajaga ];
    license = lib.licenses.gpl2;
  };
}