Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #52751 from eadwu/polybar/3.3.0

polybar: 3.2.1 -> 3.3.0

authored by

Silvan Mosberger and committed by
GitHub
2b751249 0c6f3da9

+7 -5
+7 -5
pkgs/applications/misc/polybar/default.nix
··· 1 - { cairo, cmake, fetchgit, libXdmcp, libpthreadstubs, libxcb, pcre, pkgconfig 1 + { cairo, cmake, fetchFromGitHub, libXdmcp, libpthreadstubs, libxcb, pcre, pkgconfig 2 2 , python2, stdenv, xcbproto, xcbutil, xcbutilcursor, xcbutilimage 3 3 , xcbutilrenderutil, xcbutilwm, xcbutilxrm, makeWrapper 4 4 ··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 name = "polybar-${version}"; 29 - version = "3.2.1"; 30 - src = fetchgit { 31 - url = "https://github.com/jaagr/polybar"; 29 + version = "3.3.0"; 30 + src = fetchFromGitHub { 31 + owner = "jaagr"; 32 + repo = "polybar"; 32 33 rev = version; 33 - sha256 = "1z45swj2l0h8x8li7prl963cgl6zm3birsswpij8qwcmjaj5l8vz"; 34 + sha256 = "18hrsbq62na2i4rlwbs2ih7v9shnayg76nw14i6az28wpf8kx4rr"; 35 + fetchSubmodules = true; 34 36 }; 35 37 36 38 meta = with stdenv.lib; {