vscode-extensions.saoudrizwan.claude-dev: 3.1.11 -> 3.2.5 (#375877)
[NixPkgs.git] / pkgs / by-name / cm / cmt / package.nix
blob87caa2d32603fa43a9f46fca5cbe003dfcaf9e85
2   lib,
3   stdenv,
4   fetchurl,
5   ladspaH,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "cmt";
10   version = "1.18";
12   src = fetchurl {
13     url = "http://www.ladspa.org/download/cmt_${version}.tgz";
14     sha256 = "sha256-qC+GNt4fSto4ahmaAXqc13Wkm0nnFrEejdP3I8k99so=";
15   };
17   buildInputs = [ ladspaH ];
19   preBuild = ''
20     cd src
21   '';
23   installFlags = [ "INSTALL_PLUGINS_DIR=${placeholder "out"}/lib/ladspa" ];
24   preInstall = ''
25     mkdir -p $out/lib/ladspa
26   '';
28   meta = with lib; {
29     description = "Computer Music Toolkit";
30     homepage = "https://www.ladspa.org/cmt";
31     license = licenses.gpl2;
32     platforms = platforms.linux;
33     maintainers = with maintainers; [ sjfloat ];
34   };