evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / au / autotiling-rs / package.nix
blob09469401667959dbf6faa6fc10bfe16b3fb55126
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "autotiling-rs";
5   version = "0.1.3";
7   src = fetchFromGitHub {
8     owner = "ammgws";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-LQbmF2M6pWa0QEbKF770x8TFLMGrJeq5HnXHvLrDDPA=";
12   };
14   cargoHash = "sha256-wot5GKBA2TBrA/jnWD0eypPRqUodmk/TJlYJMl3/gm4=";
16   meta = with lib; {
17     description = "Autotiling for sway (and possibly i3)";
18     homepage = "https://github.com/ammgws/autotiling-rs";
19     license = licenses.mit;
20     platforms = platforms.linux;
21     maintainers = with maintainers; [ dit7ya ];
22     mainProgram = "autotiling-rs";
23   };