nixpkgs/pkgs/applications/window-managers/i3/blocks.nix

25 lines
603 B
Nix
Raw Normal View History

{ fetchFromGitHub, stdenv, autoreconfHook }:
2015-12-11 06:55:00 +00:00
with stdenv.lib;
2015-12-11 06:55:00 +00:00
stdenv.mkDerivation rec {
pname = "i3blocks";
version = "unstable-2019-02-07";
2015-12-11 06:55:00 +00:00
src = fetchFromGitHub {
owner = "vivien";
repo = "i3blocks";
rev = "ec050e79ad8489a6f8deb37d4c20ab10729c25c3";
sha256 = "1fx4230lmqa5rpzph68dwnpcjfaaqv5gfkradcr85hd1z8d1qp1b";
2015-12-11 06:55:00 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
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
};
}