Merge pull request #165137 from armeenm/bump-patchage

This commit is contained in:
Sandro 2022-03-27 11:42:23 +02:00 committed by GitHub
commit ced99c0248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,46 @@
{ lib, stdenv, alsa-lib, boost, dbus-glib, fetchsvn, ganv, glibmm { lib
, gtkmm2, libjack2, pkg-config, python2, wafHook , stdenv
, fetchFromGitLab
, alsa-lib
, boost
, dbus-glib
, ganv
, glibmm
, gtkmm2
, libjack2
, pkg-config
, python3
, wafHook
}: }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "patchage"; pname = "patchage";
version = "1.0.1"; version = "1.0.4";
src = fetchsvn {
url = "http://svn.drobilla.net/lad/trunk/patchage/"; src = fetchFromGitLab {
rev = "5821"; owner = "drobilla";
sha256 = "1ar64l0sg468qzxj7i6ppgfqjpm92awcp5lzskamrf3ln17lrgj7"; repo = pname;
rev = "v${version}";
hash = "sha256-feQXACsn2i2pJXs0EA9tIbtpl9Lxx5K4G7eG5VWuDV0=";
fetchSubmodules = true;
}; };
buildInputs = [ buildInputs = [
alsa-lib boost dbus-glib ganv glibmm gtkmm2 libjack2 alsa-lib
pkg-config python2 wafHook boost
dbus-glib
ganv
glibmm
gtkmm2
libjack2
pkg-config
python3
wafHook
]; ];
meta = { meta = {
description = "Modular patch bay for Jack and ALSA systems"; description = "Modular patch bay for Jack and ALSA systems";
homepage = "http://non.tuxfamily.org"; homepage = "https://drobilla.net/software/patchage.html";
license = lib.licenses.lgpl3; license = lib.licenses.lgpl3;
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.nico202 ]; maintainers = [ lib.maintainers.nico202 ];