2015-03-26 19:59:36 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2005-08-24 19:13:24 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-03-26 19:59:36 +01:00
|
|
|
name = "hwdata-0.276";
|
2013-11-28 08:15:47 +01:00
|
|
|
|
2005-08-24 19:13:24 +02:00
|
|
|
src = fetchurl {
|
2015-03-26 19:59:36 +01:00
|
|
|
url = "https://git.fedorahosted.org/cgit/hwdata.git/snapshot/hwdata-0.276.tar.xz";
|
|
|
|
sha256 = "0pg0ms6kb2mm25mdklsb0xn2spcwi2mhygzc7bkpji72qq8srzsh";
|
2013-11-28 08:15:47 +01:00
|
|
|
};
|
|
|
|
|
2015-01-08 10:26:49 +01:00
|
|
|
preConfigure = "patchShebangs ./configure";
|
|
|
|
|
2013-11-28 08:15:47 +01:00
|
|
|
configureFlags = "--datadir=$(prefix)/data";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://fedorahosted.org/hwdata/";
|
|
|
|
description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-11-28 08:15:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2005-08-24 19:13:24 +02:00
|
|
|
};
|
|
|
|
}
|