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

* Added hal-info.

svn path=/nixpkgs/trunk/; revision=15385
This commit is contained in:
Eelco Dolstra 2009-04-28 21:59:09 +00:00
parent 1456344494
commit 0fc49de3cb
2 changed files with 21 additions and 0 deletions

View 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";
};
}

View file

@ -4614,6 +4614,10 @@ let
inherit (gtkLibs) glib;
};
hal_info = import ../os-specific/linux/hal/info.nix {
inherit fetchurl stdenv pkgconfig hal;
};
hdparm = import ../os-specific/linux/hdparm {
inherit fetchurl stdenv;
};