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

Commits on Dec 4, 2020

  1. libopenaptx: 0.1.0 → 0.2.0

    https://github.com/pali/libopenaptx/releases/tag/0.2.0
    
    Will be used by upcoming pipewire release.
    jtojnar committed Dec 4, 2020
    Copy the full SHA
    e0d8344 View commit details
  2. Merge pull request #105866 from jtojnar/libopenaptx-0.2

    libopenaptx: 0.1.0 → 0.2.0
    gebner authored Dec 4, 2020
    Copy the full SHA
    dbe5d0c View commit details
Showing with 9 additions and 3 deletions.
  1. +9 −3 pkgs/development/libraries/libopenaptx/default.nix
12 changes: 9 additions & 3 deletions pkgs/development/libraries/libopenaptx/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,22 @@

stdenv.mkDerivation rec {
pname = "libopenaptx";
version = "0.1.0";
version = "0.2.0";

src = fetchFromGitHub {
owner = "pali";
repo = "libopenaptx";
rev = version;
sha256 = "0996qmkmbax7ccknxrd3bx8xibs79a1ffms69scsj59f3kgj6854";
sha256 = "nTpw4vWgJ765FM6Es3SzaaaZr0YDydXglb0RWLbiigI=";
};

makeFlags = [ "PREFIX=$(out)" ];
makeFlags = [
"PREFIX=${placeholder "out"}"
# disable static builds
"ANAME="
"AOBJECTS="
"STATIC_UTILITIES="
];

enableParallelBuilding = true;