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: 73ec4085c973
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b8bc039a13e1
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 2, 2020

  1. Copy the full SHA
    b912774 View commit details
  2. Copy the full SHA
    672ab0d View commit details

Commits on Nov 26, 2020

  1. Merge pull request #99381 from fgaz/ft2-pt2-clone/endianness

    pt2-clone,ft2-clone: only build on little-endian systems
    prusnak authored Nov 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b8bc039 View commit details
Showing with 6 additions and 2 deletions.
  1. +3 −1 pkgs/applications/audio/ft2-clone/default.nix
  2. +3 −1 pkgs/applications/audio/pt2-clone/default.nix
4 changes: 3 additions & 1 deletion pkgs/applications/audio/ft2-clone/default.nix
Original file line number Diff line number Diff line change
@@ -32,7 +32,9 @@ stdenv.mkDerivation rec {
homepage = "https://16-bits.org/ft2.php";
license = licenses.bsd3;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
# From HOW-TO-COMPILE.txt:
# > This code is NOT big-endian compatible
platforms = platforms.littleEndian;
};
}

4 changes: 3 additions & 1 deletion pkgs/applications/audio/pt2-clone/default.nix
Original file line number Diff line number Diff line change
@@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
homepage = "https://16-bits.org/pt2.php";
license = licenses.bsd3;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
# From HOW-TO-COMPILE.txt:
# > This code is NOT big-endian compatible
platforms = platforms.littleEndian;
};
}