Personal Monorepo ❄️
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 26 lines 651 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6rustPlatform.buildRustPackage (finalAttrs: { 7 pname = "deslop"; 8 version = "0.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "chinmay-sawant"; 12 repo = "deslop"; 13 tag = "v${finalAttrs.version}"; 14 hash = "sha256-9k+RyWJPS2/x0bB6o94FPuM0Qp7NpkH2Cn2HgIgTY2Q="; 15 }; 16 17 cargoHash = "sha256-pcS9kAR443tovTpVNPnJSxrNW7pJhrJ0qODNty7Tbn8="; 18 19 meta = { 20 description = "Language Agnostic Ultra Fast Best Practice Analyzer"; 21 homepage = "https://github.com/chinmay-sawant/deslop"; 22 license = lib.licenses.mit; 23 maintainers = with lib.maintainers; [noverby]; 24 mainProgram = "deslop"; 25 }; 26})