File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
pkgs/by-name/ca/cargo-aoc Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ rustPlatform ,
4+ fetchCrate ,
5+ testers ,
6+ nix-update-script ,
7+ cargo-aoc ,
8+ } :
9+ rustPlatform . buildRustPackage rec {
10+ pname = "cargo-aoc" ;
11+ version = "0.3.8" ;
12+
13+ src = fetchCrate {
14+ inherit pname version ;
15+ hash = "sha256-5CjY91515GeLzmLJiGjfbBfIMPr32EA65X/rriKPWRY=" ;
16+ } ;
17+
18+ cargoHash = "sha256-LhPsiO0Fnx9Tf+itaaVaO1XgqM00m+UQMlUJYY8isXY=" ;
19+
20+ passthru = {
21+ tests . version = testers . testVersion { package = cargo-aoc ; } ;
22+ updateScript = nix-update-script { } ;
23+ } ;
24+
25+ meta = {
26+ description = "Simple CLI tool that aims to be a helper for Advent of Code" ;
27+ homepage = "https://github.com/gobanos/cargo-aoc" ;
28+ license = with lib . licenses ; [
29+ mit
30+ asl20
31+ ] ;
32+ maintainers = with lib . maintainers ; [ defelo ] ;
33+ mainProgram = "cargo-aoc" ;
34+ } ;
35+ }
You can’t perform that action at this time.
0 commit comments