2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, fuse }:
|
2015-10-14 19:20:30 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "djmount";
|
2015-10-14 19:20:30 +02:00
|
|
|
version = "0.71";
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/djmount/${version}/${pname}-${version}.tar.gz";
|
2015-10-14 19:20:30 +02:00
|
|
|
sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fuse];
|
2015-10-14 19:20:30 +02:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://djmount.sourceforge.net/";
|
2015-10-14 19:20:30 +02:00
|
|
|
description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices";
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.jagajaga ];
|
|
|
|
license = lib.licenses.gpl2;
|
2015-10-14 19:20:30 +02:00
|
|
|
};
|
|
|
|
}
|