mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 15:15:36 +00:00
6f2fbf5f0b
This fixes hopefully all remaining missing lib inputs, likely introduced as a regression by our recent treewide switch from stdenv.lib to lib. These instances are all I could find using nix-instantiate --parse using the following command: find "$NIXPKGS" -name '*.nix' \ -and ! -path "$NIXPKGS/pkgs/development/interpreters/python/cpython/docs/template.nix" \ -and ! -path '$NIXPKGS/.git/**' \ -print0 | xargs -0 nix-instantiate --parse >/dev/null
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "CharacterCompressor";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magnetophon";
|
|
repo = "CharacterCompressor";
|
|
rev = "V${version}";
|
|
sha256 = "1h0bhjhx023476gbijq842b6f8z71zcyn4c9mddwyb18w9cdamp5";
|
|
};
|
|
|
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
|
|
|
buildPhase = ''
|
|
faust2jaqt -vec -time -t 99999 CharacterCompressor.dsp
|
|
faust2jaqt -vec -time -t 99999 CharacterCompressorMono.dsp
|
|
faust2lv2 -vec -time -gui -t 99999 CharacterCompressor.dsp
|
|
faust2lv2 -vec -time -gui -t 99999 CharacterCompressorMono.dsp
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp CharacterCompressor $out/bin/
|
|
cp CharacterCompressorMono $out/bin/
|
|
mkdir -p $out/lib/lv2
|
|
cp -r CharacterCompressor.lv2/ $out/lib/lv2
|
|
cp -r CharacterCompressorMono.lv2/ $out/lib/lv2
|
|
'';
|
|
|
|
meta = {
|
|
description = "A compressor with character. For jack and lv2";
|
|
homepage = "https://github.com/magnetophon/CharacterCompressor";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
};
|
|
}
|