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: f476c6075444
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14d5038f050c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 3, 2019

  1. mp3gain: 1.5.2 -> 1.6.2

    derchrisuk committed Oct 3, 2019
    Copy the full SHA
    7b7360d View commit details
  2. Merge pull request #70341 from derchrisuk/mp3gain

    mp3gain: 1.5.2 -> 1.6.2
    globin authored Oct 3, 2019
    Copy the full SHA
    14d5038 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/applications/audio/mp3gain/default.nix
10 changes: 5 additions & 5 deletions pkgs/applications/audio/mp3gain/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, unzip }:
{ stdenv, fetchurl, unzip, mpg123 }:

stdenv.mkDerivation {
name = "mp3gain-1.5.2";
name = "mp3gain-1.6.2";
src = fetchurl {
url = "mirror://sourceforge/mp3gain/mp3gain-1_5_2-src.zip";
sha256 = "1jkgry59m8cnnfq05b9y1h4x4wpy3iq8j68slb9qffwa3ajcgbfv";
url = "mirror://sourceforge/mp3gain/mp3gain-1_6_2-src.zip";
sha256 = "0varr6y7k8zarr56b42r0ad9g3brhn5vv3xjg1c0v19jxwr4gh2w";
};

buildInputs = [ unzip ];
buildInputs = [ unzip mpg123 ];

sourceRoot = ".";