mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 18:34:41 +00:00
* Added hal-info.
svn path=/nixpkgs/trunk/; revision=15385
This commit is contained in:
parent
1456344494
commit
0fc49de3cb
17
pkgs/os-specific/linux/hal/info.nix
Normal file
17
pkgs/os-specific/linux/hal/info.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{stdenv, fetchurl, pkgconfig, hal}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "hal-info-20090414";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://hal.freedesktop.org/releases/${name}.tar.gz";
|
||||||
|
sha256 = "03zsh4psq189k7i8mwazsmallwc10naavkdrp1sp68jjjkf8gp9k";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [pkgconfig hal];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.freedesktop.org/wiki/Software/hal;
|
||||||
|
description = "Hardware data and quirks for HAL";
|
||||||
|
};
|
||||||
|
}
|
|
@ -4614,6 +4614,10 @@ let
|
||||||
inherit (gtkLibs) glib;
|
inherit (gtkLibs) glib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hal_info = import ../os-specific/linux/hal/info.nix {
|
||||||
|
inherit fetchurl stdenv pkgconfig hal;
|
||||||
|
};
|
||||||
|
|
||||||
hdparm = import ../os-specific/linux/hdparm {
|
hdparm = import ../os-specific/linux/hdparm {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue