libsysstat: 0.3.2 -> 0.3.3

This commit is contained in:
romildo 2017-02-19 07:55:45 -03:00
parent 27395d33fb
commit e6472f1360
1 changed files with 5 additions and 5 deletions

View File

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, cmake, qt5 }: { stdenv, fetchFromGitHub, cmake, qt5, lxqt }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libsysstat-${version}"; name = "libsysstat-${version}";
version = "0.3.2"; version = "0.3.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lxde"; owner = "lxde";
repo = "libsysstat"; repo = "libsysstat";
rev = version; rev = version;
sha256 = "1swpnz37daj3njkbqddmhaiipfl335c3g675y9afhabg7l4anf1n"; sha256 = "1rkbh6jj69wsf8a7w7cq8psqw08vqf9rq5pdnv4xxqb036r4bi31";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake lxqt.lxqt-build-tools ];
buildInputs = [ qt5.qtbase ]; buildInputs = [ qt5.qtbase ];
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
description = "Library used to query system info and statistics"; description = "Library used to query system info and statistics";
homepage = https://github.com/lxde/libsysstat; homepage = https://github.com/lxde/libsysstat;
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix; platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
}; };
} }