silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / to / todo / package.nix
blob4f5789527ae644878b19886280cfd136a9b2748e
1 { lib, rustPlatform, fetchFromGitHub, pkg-config, openssl }:
3 rustPlatform.buildRustPackage rec {
4   pname = "todo";
5   version = "2.5";
7   src = fetchFromGitHub {
8     owner = "sioodmy";
9     repo = "todo";
10     rev = version;
11     sha256 = "oyRdXvVnCfdFM8lI1eCDHHYNWcJc0Qg0TKxQXUqNo40=";
12   };
14   cargoHash = "sha256-B0tecuBx/FFQokhfI6+xpppyG5DD8WS2+MkmPaZfMhI=";
16   nativeBuildInputs = [ pkg-config ];
18   buildInputs = [ openssl ];
19   meta = with lib; {
20     description = "Simple todo cli program written in rust";
21     homepage = "https://github.com/sioodmy/todo";
22     license = licenses.gpl3Only;
23     maintainers = with maintainers; [ sioodmy ];
24     mainProgram = "todo";
25   };