nixpkgs/pkgs/tools/filesystems/djmount/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

22 lines
661 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse }:
stdenv.mkDerivation rec {
name = "djmount-${version}";
version = "0.71";
src = fetchurl {
url = "mirror://sourceforge/djmount/${version}/${name}.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;
};
}