Unverified Commit 1914a451 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

Merge pull request #257034 from t4ccer/t4/bump-7kaa

_7kaa: 2.15.5 -> 2.15.6
parents 67906e7e 4dd9f88b
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -16,8 +16,7 @@
}:

let
  pname = "7kaa";
  version = "2.15.5";
  version = "2.15.6";

  musicVersion = lib.versions.majorMinor version;
  music = stdenv.mkDerivation {
@@ -37,14 +36,15 @@ let
    meta.license = lib.licenses.unfree;
  };
in
gccStdenv.mkDerivation rec {
  inherit pname version;
gccStdenv.mkDerivation (finalAttrs: {
  pname = "7kaa";
  inherit version;

  src = fetchFromGitHub {
    owner = "the3dfxdude";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-Z6TsR6L6vwpzoKTj6xJ6HKy4DxcUBWmYBFi/a9pQBD8=";
    repo = "7kaa";
    rev = "v${finalAttrs.version}";
    hash = "sha256-kkM+kFQ+tGHS5NrVPeDMRWFQb7waESt8xOLfFGaGdgo=";
  };

  nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ];
@@ -73,4 +73,4 @@ gccStdenv.mkDerivation rec {
    platforms = platforms.x86_64 ++ platforms.aarch64;
    maintainers = with maintainers; [ _1000101 ];
  };
}
})