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: 1889c2958cee
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7144633556bb
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 5, 2021

  1. bambootracker: 0.4.4 -> 0.4.5

    (cherry picked from commit e940b82)
    OPNA2608 authored and Jonathan Ringer committed Jan 5, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    7144633 View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/applications/audio/bambootracker/default.nix
7 changes: 3 additions & 4 deletions pkgs/applications/audio/bambootracker/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,6 @@
, fetchFromGitHub
, qmake
, qtbase
, qtmultimedia
, qttools
, alsaSupport ? stdenv.hostPlatform.isLinux
, alsaLib
@@ -19,20 +18,20 @@ let
in
mkDerivation rec {
pname = "bambootracker";
version = "0.4.4";
version = "0.4.5";

src = fetchFromGitHub {
owner = "rerrahkr";
repo = "BambooTracker";
rev = "v${version}";
sha256 = "0d0f4jqzknsiq725pvfndarfjg183f92rb0lim3wzshnsixr5vdc";
sha256 = "0ibi0sykxf6cp5la2c4pgxf5gvy56yv259fbmdwdrdyv6vlddf42";
};

sourceRoot = "source/BambooTracker";

nativeBuildInputs = [ qmake qttools ];

buildInputs = [ qtbase qtmultimedia ]
buildInputs = [ qtbase ]
++ optional alsaSupport alsaLib
++ optional pulseSupport libpulseaudio
++ optional jackSupport libjack2;