mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
49 lines
855 B
Nix
49 lines
855 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 = "Music creation tool, intended for live use";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "luppp";
|
|
};
|
|
}
|