nixpkgs/pkgs/applications/misc/cbatticon/default.nix

29 lines
717 B
Nix
Raw Normal View History

2016-03-30 14:34:54 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, gettext, glib, gtk3, libnotify }:
2015-03-16 08:42:12 +00:00
stdenv.mkDerivation rec {
name = "cbatticon-${version}";
2017-01-24 13:43:11 +00:00
version = "1.6.5";
2015-03-16 08:42:12 +00:00
2016-03-30 14:34:54 +00:00
src = fetchFromGitHub {
owner = "valr";
repo = "cbatticon";
rev = version;
2017-01-24 13:43:11 +00:00
sha256 = "1j7gbmmygvbrawqn1bbaf47lb600lylslzqbvfwlhifmi7qnm6ca";
2015-03-16 08:42:12 +00:00
};
makeFlags = "PREFIX=$(out)";
2016-03-30 14:34:54 +00:00
nativeBuildInputs = [ pkgconfig gettext ];
buildInputs = [ glib gtk3 libnotify ];
2015-03-16 08:42:12 +00:00
meta = with stdenv.lib; {
2016-03-30 14:34:54 +00:00
description = "Lightweight and fast battery icon that sits in the system tray";
2015-03-16 08:42:12 +00:00
homepage = https://github.com/valr/cbatticon;
license = licenses.gpl2;
maintainers = [ maintainers.domenkozar ];
2015-03-16 08:42:12 +00:00
platforms = platforms.linux;
};
}