depot/third_party/nixpkgs/pkgs/tools/filesystems/djmount/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
665 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse }:
stdenv.mkDerivation rec {
pname = "djmount";
version = "0.71";
src = fetchurl {
url = "mirror://sourceforge/djmount/${version}/${pname}-${version}.tar.gz";
sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa";
};
nativeBuildInputs = [ pkgconfig ];
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 = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.jagajaga ];
license = stdenv.lib.licenses.gpl2;
};
}