python3Packages.pywikibot: init at 9.5.0 (#333068)
[NixPkgs.git] / pkgs / applications / window-managers / i3 / rounded.nix
blob45e80f7fb1a7aabb9715edeacded6d0d714ac091
1 { fetchFromGitHub, lib, i3, pcre }:
3 i3.overrideAttrs (oldAttrs: rec {
4   pname = "i3-rounded";
5   version = "unstable-2021-10-03";
7   src = fetchFromGitHub {
8     owner = "LinoBigatti";
9     repo = "i3-rounded";
10     rev = "524c9f7b50f8c540b2ae3480b242c30d8775f98e";
11     sha256 = "0y7m1s1y8f9vgkp7byi33js8n4rigiykd71s936i5d4rwlzrxiwm";
12   };
14   buildInputs = oldAttrs.buildInputs ++ [ pcre ];
16   # Some tests are failing.
17   doCheck = false;
19   meta = with lib; {
20     description = "Fork of i3-gaps that adds rounding to window corners";
21     homepage = "https://github.com/LinoBigatti/i3-rounded";
22     maintainers = with maintainers; [ marsupialgutz ];
23     license = licenses.bsd3;
24     platforms = platforms.unix;
25   };