evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / mi / minesweep-rs / package.nix
blob454be1129634d787a0865fe2561313eed189f187
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "minesweep-rs";
8   version = "6.0.54";
10   src = fetchFromGitHub {
11     owner = "cpcloud";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-FzMCqsPBcbblItRzfnY43glY4We9jk0eBxjG0SZnau8=";
15   };
17   cargoHash = "sha256-VjIn4k/OuxsXLJ2LOk43LKHo0PrPyMigNOO2VVYZQYw=";
19   meta = with lib; {
20     description = "Sweep some mines for fun, and probably not for profit";
21     homepage = "https://github.com/cpcloud/minesweep-rs";
22     license = licenses.asl20;
23     mainProgram = "minesweep";
24     maintainers = with maintainers; [ aleksana ];
25     platforms = platforms.all;
26   };