nixpkgs/pkgs/os-specific/linux/hwdata/default.nix

23 lines
629 B
Nix
Raw Normal View History

2015-03-26 19:59:36 +01:00
{ stdenv, fetchurl }:
2016-08-13 04:06:34 +02:00
stdenv.mkDerivation rec {
name = "hwdata-${version}";
version = "0.291";
2013-11-28 08:15:47 +01:00
src = fetchurl {
2016-08-13 04:06:34 +02:00
url = "https://git.fedorahosted.org/cgit/hwdata.git/snapshot/hwdata-${version}.tar.xz";
sha256 = "121qixrdhdncva1cnj7m7jlqvi1kbj85dpi844jiis3a8hgpzw5a";
2013-11-28 08:15:47 +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";
license = stdenv.lib.licenses.gpl2;
2013-11-28 08:15:47 +01:00
platforms = stdenv.lib.platforms.linux;
};
}