cbatticon: 1.6.8 -> 1.6.9
This commit is contained in:
parent
e1f3167d6d
commit
d0c5d91136
@ -1,32 +1,31 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, gettext, glib, gtk3, libnotify }:
|
{ stdenv, fetchFromGitHub, pkgconfig, gettext, glib, gtk3, libnotify }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "cbatticon";
|
||||||
name = "cbatticon-${version}";
|
version = "1.6.9";
|
||||||
version = "1.6.8";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "valr";
|
owner = "valr";
|
||||||
repo = "cbatticon";
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "16g26vin1693dbdr9qsnw36fdchx394lp79gvp7gcbw0w1ny9av6";
|
sha256 = "0kw09d678sd3m18fmi4380sl4a2m5lkfmq0kps16cdmq7z80rvaf";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
|
||||||
sed -i -e 's/ -Wno-format//g' Makefile
|
|
||||||
'';
|
|
||||||
|
|
||||||
makeFlags = "PREFIX=$(out)";
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig gettext ];
|
nativeBuildInputs = [ pkgconfig gettext ];
|
||||||
|
|
||||||
buildInputs = [ glib gtk3 libnotify ];
|
buildInputs = [ glib gtk3 libnotify ];
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i -e 's/ -Wno-format//g' Makefile
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = "PREFIX=${placeholder "out"}";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Lightweight and fast battery icon that sits in the system tray";
|
description = "Lightweight and fast battery icon that sits in the system tray";
|
||||||
homepage = https://github.com/valr/cbatticon;
|
homepage = https://github.com/valr/cbatticon;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.domenkozar ];
|
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.domenkozar ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user