mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +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.
38 lines
984 B
Nix
38 lines
984 B
Nix
{ lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "Tambura";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "olilarkin";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1w80cmiyzca1wirf5gypg3hcix1ky777id8wnd3k92mn1jf4a24y";
|
|
};
|
|
|
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
buildPhase = ''
|
|
faust2jaqt -vec -time -t 99999 ${pname}.dsp
|
|
faust2lv2 -vec -time -gui -t 99999 ${pname}.dsp
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
for f in $(find . -executable -type f); do
|
|
cp $f $out/bin/
|
|
done
|
|
mkdir -p $out/lib/lv2
|
|
cp -r ${pname}.lv2/ $out/lib/lv2
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "FAUST patch inspired by the Indian Tambura/Tanpura - a four string drone instrument, known for its unique rich harmonic timbre";
|
|
homepage = "https://github.com/olilarkin/Tambura";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
};
|
|
}
|