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

22 lines
594 B
Nix
Raw Normal View History

2015-03-26 19:59:36 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation {
2015-03-26 19:59:36 +01:00
name = "hwdata-0.276";
2013-11-28 08:15:47 +01: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
};
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;
};
}