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:
parent
727ec59343
commit
e5e556f19a
1 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue