obexfs: cleanup, add license

This commit is contained in:
Nikolay Amiantov 2016-02-12 22:45:29 +03:00
parent 4a00e1f70b
commit 62365ecf1a

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, fuse, obexftp}:
{ stdenv, fetchurl, pkgconfig, fuse, obexftp }:
stdenv.mkDerivation rec {
name = "obexfs-0.12";
@ -8,12 +8,13 @@ stdenv.mkDerivation rec {
sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj";
};
buildInputs = [pkgconfig fuse obexftp];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse obexftp ];
NIX_LDFLAGS = "-lobexftp";
meta = {
meta = with stdenv.lib; {
homepage = http://dev.zuckschwerdt.org/openobex/wiki/ObexFs;
description = "A tool to mount OBEX-based devices (such as Bluetooth phones)";
platforms = platforms.linux;
license = licenses.lgpl2Plus;
};
}