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: 54d286365db3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3e0713d5821b
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Apr 2, 2021

  1. 2
    Copy the full SHA
    3e0713d View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 pkgs/applications/radio/ubertooth/default.nix
  2. +2 −2 pkgs/development/libraries/libbtbb/default.nix
2 changes: 1 addition & 1 deletion pkgs/applications/radio/ubertooth/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
"-DUDEV_RULES_GROUP=${udevGroup}"
];

meta = with stdenv.lib; {
meta = with lib; {
description = "Open source wireless development platform suitable for Bluetooth experimentation";
homepage = "https://github.com/greatscottgadgets/ubertooth";
license = licenses.gpl2;
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libbtbb/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, lib, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
pname = "libbtbb";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {
meta = with lib; {
description = "Bluetooth baseband decoding library";
homepage = "https://github.com/greatscottgadgets/libbtbb";
license = licenses.gpl2;