nixpkgs/pkgs/os-specific/linux/hwdata/default.nix
William A. Kennington III 4febebe9cf hwdata: 249 -> 276
2015-03-26 12:00:34 -07:00

22 lines
594 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "hwdata-0.276";
src = fetchurl {
url = "https://git.fedorahosted.org/cgit/hwdata.git/snapshot/hwdata-0.276.tar.xz";
sha256 = "0pg0ms6kb2mm25mdklsb0xn2spcwi2mhygzc7bkpji72qq8srzsh";
};
preConfigure = "patchShebangs ./configure";
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;
platforms = stdenv.lib.platforms.linux;
};
}