tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
polybar: 3.2.1 -> 3.3.0
Edmund Wu
7 years ago
4833732f
913aa6b7
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
polybar
default.nix
+7
-5
pkgs/applications/misc/polybar/default.nix
···
1
1
-
{ cairo, cmake, fetchgit, libXdmcp, libpthreadstubs, libxcb, pcre, pkgconfig
1
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
29
-
version = "3.2.1";
30
30
-
src = fetchgit {
31
31
-
url = "https://github.com/jaagr/polybar";
29
29
+
version = "3.3.0";
30
30
+
src = fetchFromGitHub {
31
31
+
owner = "jaagr";
32
32
+
repo = "polybar";
32
33
rev = version;
33
33
-
sha256 = "1z45swj2l0h8x8li7prl963cgl6zm3birsswpij8qwcmjaj5l8vz";
34
34
+
sha256 = "18hrsbq62na2i4rlwbs2ih7v9shnayg76nw14i6az28wpf8kx4rr";
35
35
+
fetchSubmodules = true;
34
36
};
35
37
36
38
meta = with stdenv.lib; {