Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 568 B view raw
1{ 2 rustPlatform, 3 fetchFromGitHub, 4 lib, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "colo"; 9 version = "0.4.1"; 10 11 src = fetchFromGitHub { 12 owner = "Aloso"; 13 repo = "colo"; 14 tag = "v${version}"; 15 hash = "sha256-ocGzZR4gM2sInXccbHxh7Vf0kcZTZOnVW0KM6zp/pR8="; 16 }; 17 18 cargoHash = "sha256-bAq1sDP/EG9TuUHHWLrp3JtW6S5nWgyyXQbiD63WPGk="; 19 20 meta = { 21 description = "Displays colors in various color spaces"; 22 homepage = "https://aloso.github.io/colo"; 23 license = lib.licenses.mit; 24 maintainers = with lib.maintainers; [ llakala ]; 25 }; 26}