Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5 colors, 6 tty, 7}: 8 9buildDunePackage rec { 10 pname = "spices"; 11 version = "0.0.2"; 12 13 minimalOCamlVersion = "5.1"; 14 15 src = fetchurl { 16 url = "https://github.com/leostera/minttea/releases/download/${version}/minttea-${version}.tbz"; 17 hash = "sha256-0eB7OuxcPdv9bf2aIQEeir44mQfx5W2AJj7Vb4pGtLI="; 18 }; 19 20 propagatedBuildInputs = [ 21 colors 22 tty 23 ]; 24 25 doCheck = true; 26 27 meta = { 28 description = "Declarative styles for TUI applications"; 29 homepage = "https://github.com/leostera/minttea"; 30 changelog = "https://github.com/leostera/minttea/blob/${version}/CHANGES.md"; 31 license = lib.licenses.mit; 32 maintainers = [ ]; 33 }; 34}