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

Commits on Apr 17, 2020

  1. alsaTools: 1.1.7 -> 1.2.2

    Fixes build regression (after alsa update, I assume).
    Despite the version number change, the diff is trivial:
    https://git.alsa-project.org/?p=alsa-tools.git;a=log;h=refs/tags/v1.2.2
    vcunat committed Apr 17, 2020
    Copy the full SHA
    acb4710 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/os-specific/linux/alsa-tools/default.nix
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/alsa-tools/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@

stdenv.mkDerivation rec {
pname = "alsa-tools";
version = "1.1.7";
version = "1.2.2";

src = fetchurl {
url = "mirror://alsa/tools/${pname}-${version}.tar.bz2";
sha256 = "1xjfghr9s0j6n91kgs95cc4r6qrjsgc4yj2w0nir3xpnm0l36950";
sha256 = "0jbkjmq038zapj66a7nkppdf644v2mwj581xbmh6k4i8w6mcglxz";
};

nativeBuildInputs = [ pkgconfig ];