Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 907e0af7dcb7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3ad520626308
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 9, 2020

  1. obexfs: add missing bluez dep

    Jonathan Ringer committed Jan 9, 2020
    Copy the full SHA
    3ad5206 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/bluetooth/obexfs/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/bluetooth/obexfs/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, pkgconfig, fuse, obexftp }:
{ stdenv, fetchurl, pkgconfig, bluez, fuse, obexftp }:

stdenv.mkDerivation rec {
name = "obexfs-0.12";

src = fetchurl {
url = "mirror://sourceforge/openobex/${name}.tar.gz";
sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse obexftp ];
buildInputs = [ fuse obexftp bluez ];

meta = with stdenv.lib; {
homepage = http://dev.zuckschwerdt.org/openobex/wiki/ObexFs;