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

Commits on May 30, 2018

  1. uade123: fix build after #28029

    orivej committed May 30, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    nbbeeken Neal Beeken
    Copy the full SHA
    a94021e View commit details
Showing with 5 additions and 2 deletions.
  1. +5 −2 pkgs/applications/audio/uade123/default.nix
7 changes: 5 additions & 2 deletions pkgs/applications/audio/uade123/default.nix
Original file line number Diff line number Diff line change
@@ -8,8 +8,11 @@ in stdenv.mkDerivation rec {
url = "http://zakalwe.fi/uade/uade2/uade-${version}.tar.bz2";
sha256 = "04nn5li7xy4g5ysyjjngmv5d3ibxppkbb86m10vrvadzxdd4w69v";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ which libao ];
nativeBuildInputs = [ pkgconfig which ];
buildInputs = [ libao ];

enableParallelBuilding = true;
hardeningDisable = [ "format" ];

meta = with stdenv.lib; {
description = "Plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API";