Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / window-managers / i3 / i3-ratiosplit.nix
blobfbd584f2baa9aa994e1a7f76833b5951219acf68
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "i3-ratiosplit";
5   version = "0.1.0";
7   src = fetchFromGitHub {
8     owner = "333fred";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0yfmr5zk2c2il9d31yjjbr48sqgcq6hp4a99hl5mjm2ajyhy5bz3";
12   };
14   cargoSha256 = "134sgc9d0j57swknl9sgil6212rws2hhp92s3cg1yzz5ygx21c76";
16   # Currently no tests are implemented, so we avoid building the package twice
17   doCheck = false;
19   meta = with lib; {
20     description = "Resize newly created windows";
21     homepage = "https://github.com/333fred/i3-ratiosplit";
22     license = licenses.mit;
23     maintainers = with maintainers; [ svrana ];
24     platforms = platforms.linux;
25   };