2019-04-07 14:56:33 +00:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook }:
|
2015-12-11 06:55:00 +00:00
|
|
|
|
2017-05-30 18:30:41 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2015-12-11 06:55:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "i3blocks-${version}";
|
2019-04-07 14:56:33 +00:00
|
|
|
version = "unstable-2019-02-07";
|
2015-12-11 06:55:00 +00:00
|
|
|
|
2019-04-07 14:56:33 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vivien";
|
|
|
|
repo = "i3blocks";
|
|
|
|
rev = "ec050e79ad8489a6f8deb37d4c20ab10729c25c3";
|
|
|
|
sha256 = "1fx4230lmqa5rpzph68dwnpcjfaaqv5gfkradcr85hd1z8d1qp1b";
|
2015-12-11 06:55:00 +00:00
|
|
|
};
|
|
|
|
|
2019-04-07 14:56:33 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2017-05-30 18:30:41 +00:00
|
|
|
|
|
|
|
meta = {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "A flexible scheduler for your i3bar blocks";
|
2015-12-11 06:55:00 +00:00
|
|
|
homepage = https://github.com/vivien/i3blocks;
|
|
|
|
license = licenses.gpl3;
|
2017-01-13 18:09:28 +00:00
|
|
|
platforms = with platforms; freebsd ++ linux;
|
2015-12-11 06:55:00 +00:00
|
|
|
};
|
|
|
|
}
|