2015-03-26 18:59:36 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2005-08-24 17:13:24 +00:00
|
|
|
|
2016-08-13 02:06:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hwdata-${version}";
|
2018-05-07 10:01:21 +00:00
|
|
|
version = "0.312";
|
2013-11-28 07:15:47 +00:00
|
|
|
|
2005-08-24 17:13:24 +00:00
|
|
|
src = fetchurl {
|
2018-05-07 10:01:21 +00:00
|
|
|
url = "https://github.com/vcrhonek/hwdata/archive/v0.312.tar.gz";
|
|
|
|
sha256 = "04dbxfn40b8vyw49qpkslv20akbqm5hwl3cndmqacp6cik1l0gai";
|
2013-11-28 07:15:47 +00:00
|
|
|
};
|
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
preConfigure = "patchShebangs ./configure";
|
|
|
|
|
2013-11-28 07:15:47 +00:00
|
|
|
configureFlags = "--datadir=$(prefix)/data";
|
|
|
|
|
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/vcrhonek/hwdata;
|
2013-11-28 07:15:47 +00:00
|
|
|
description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-11-28 07:15:47 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2005-08-24 17:13:24 +00:00
|
|
|
};
|
|
|
|
}
|