sidplayfp: 2.1.1 -> 2.2.0

This commit is contained in:
OPNA2608 2021-06-16 10:53:56 +02:00 committed by Raphael Megzari
parent cfd190abcf
commit baf7bbdc77

View file

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchFromGitHub
, nix-update-script
, autoreconfHook
, perl
, pkg-config
@ -15,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "sidplayfp";
version = "2.1.1";
version = "2.2.0";
src = fetchFromGitHub {
owner = "libsidplayfp";
repo = "sidplayfp";
rev = "v${version}";
sha256 = "0s3xmg3yzfqbsnlh2y46w7b5jim5zq7mshs6hx03q8wdr75cvwh4";
sha256 = "sha256-hN7225lhuYyo4wPDiiEc9FaPg90pZ13mLw93V8tb/P0=";
};
nativeBuildInputs = [ autoreconfHook perl pkg-config ];
@ -37,6 +38,12 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; {
description = "A SID player using libsidplayfp";
homepage = "https://github.com/libsidplayfp/sidplayfp";