1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-11 16:27:02 +00:00

irqbalance: 1.1.0 -> 1.2.0

This commit is contained in:
Franz Pletz 2017-08-01 01:50:48 +02:00
parent 727ec59343
commit e5e556f19a
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,20 +1,20 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig}: { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, ncurses, libcap_ng }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "irqbalance-1.1.0"; name = "irqbalance-${version}";
version = "1.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "irqbalance"; owner = "irqbalance";
repo = "irqbalance"; repo = "irqbalance";
rev = "a23de3c455b88060620d102f6946b1d8be9e2680"; rev = "v${version}";
sha256 = "06yq5k5v9wiwajqcjkbkk46g212qx78x323bygnyqshc5s25mp2x"; sha256 = "1xznxjbjzg6sds3fymdq9rk3g4cgq7xj7rz3dwbqqjqvd3k2nxw6";
}; };
nativeBuildInputs = [ autoconf automake libtool pkgconfig ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ glib ncurses libcap_ng ];
preConfigure = '' LDFLAGS = "-lncurses";
./autogen.sh
'';
meta = { meta = {
homepage = https://github.com/Irqbalance/irqbalance; homepage = https://github.com/Irqbalance/irqbalance;