Merge pull request #306486 from ehmry/butt

butt: 0.1.40 -> 0.1.41
This commit is contained in:
Weijia Wang 2024-04-27 06:04:05 +02:00 committed by GitHub
commit 9474a18267
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 3 deletions

View File

@ -1,13 +1,13 @@
{ lib, stdenv, fetchurl, pkg-config, fltk13, portaudio, lame, libvorbis, libogg
, flac, libopus, libsamplerate, fdk_aac, dbus, openssl, curl }:
, flac, libopus, libsamplerate, fdk_aac, dbus, openssl, curl, portmidi }:
stdenv.mkDerivation (finalAttrs: {
pname = "butt";
version = "0.1.40";
version = "0.1.41";
src = fetchurl {
url = "https://danielnoethen.de/butt/release/${finalAttrs.version}/butt-${finalAttrs.version}.tar.gz";
hash = "sha256-wag177UIQ6YpBkJ5XQlxYtTdBFFNO5q+BLD/CiUkGoA=";
hash = "sha256-wTypjqd2PpmDSA8vScMLkAL44xE/WAccm747PS9ClVA=";
};
postPatch = ''
@ -31,6 +31,7 @@ stdenv.mkDerivation (finalAttrs: {
dbus
openssl
curl
portmidi
];
postInstall = ''
@ -45,5 +46,6 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ehmry ];
mainProgram = "butt";
platforms = lib.platforms.linux;
};
})