Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 callPackage, 3 lv2, 4 fontconfig, 5 libvterm-neovim, 6 ... 7}@args: 8 9callPackage ./generic.nix ( 10 args 11 // rec { 12 pname = "jit"; 13 version = "unstable-2021-08-15"; 14 url = "https://git.open-music-kontrollers.ch/lv2/${pname}.lv2/snapshot/${pname}.lv2-1f5d6935049fc0dd5a4dc257b84b36d2048f2d83.tar.xz"; 15 sha256 = "sha256-XGICowVb0JgLJpn2h9GtViobYTdmo1LJ7/JFEyVsIqU="; 16 17 additionalBuildInputs = [ 18 lv2 19 fontconfig 20 libvterm-neovim 21 ]; 22 23 description = "Just-in-Time C/Rust compiler embedded in an LV2 plugin"; 24 } 25)