forked from mirrors/nixpkgs
patchage: 1.0.1 -> 1.0.4
https://gitlab.com/drobilla/patchage/-/releases
This commit is contained in:
parent
9bc841fec1
commit
4b048b1f14
|
@ -1,24 +1,46 @@
|
|||
{ lib, stdenv, alsa-lib, boost, dbus-glib, fetchsvn, ganv, glibmm
|
||||
, gtkmm2, libjack2, pkg-config, python2, wafHook
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, alsa-lib
|
||||
, boost
|
||||
, dbus-glib
|
||||
, ganv
|
||||
, glibmm
|
||||
, gtkmm2
|
||||
, libjack2
|
||||
, pkg-config
|
||||
, python3
|
||||
, wafHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "patchage";
|
||||
version = "1.0.1";
|
||||
src = fetchsvn {
|
||||
url = "http://svn.drobilla.net/lad/trunk/patchage/";
|
||||
rev = "5821";
|
||||
sha256 = "1ar64l0sg468qzxj7i6ppgfqjpm92awcp5lzskamrf3ln17lrgj7";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "drobilla";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-feQXACsn2i2pJXs0EA9tIbtpl9Lxx5K4G7eG5VWuDV0=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
alsa-lib boost dbus-glib ganv glibmm gtkmm2 libjack2
|
||||
pkg-config python2 wafHook
|
||||
alsa-lib
|
||||
boost
|
||||
dbus-glib
|
||||
ganv
|
||||
glibmm
|
||||
gtkmm2
|
||||
libjack2
|
||||
pkg-config
|
||||
python3
|
||||
wafHook
|
||||
];
|
||||
|
||||
meta = {
|
||||
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;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ lib.maintainers.nico202 ];
|
||||
|
|
Loading…
Reference in a new issue