nixpkgs/pkgs/applications/audio/luppp/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

48 lines
830 B
Nix

{ lib, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, jack2
, cairo
, liblo
, libsndfile
, libsamplerate
, ntk
}:
stdenv.mkDerivation rec {
pname = "luppp";
version = "1.2.1";
src = fetchFromGitHub {
owner = "openAVproductions";
repo = "openAV-Luppp";
rev = "release-${version}";
sha256 = "1ncbn099fyfnr7jw2bp3wf2g9k738lw53m6ssw6wji2wxwmghv78";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
jack2
cairo
liblo
libsndfile
libsamplerate
ntk
];
meta = with lib; {
homepage = "http://openavproductions.com/luppp/"; # https does not work
description = "A music creation tool, intended for live use";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ prusnak ];
platforms = platforms.linux;
};
}