nixpkgs/pkgs/os-specific/linux/hwdata/default.nix
R. RyanTM 8564ceac8d hwdata: 0.310 -> 0.311
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/hwdata/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.311 with grep in /nix/store/gfaiffnb4k4pmszbnv41jxmibvd07v1w-hwdata-0.311
- directory tree listing: https://gist.github.com/a3dcff8ef8aec362a11c36f07277ad0d
2018-04-10 23:12:46 -07:00

23 lines
607 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "hwdata-${version}";
version = "0.311";
src = fetchurl {
url = "https://github.com/vcrhonek/hwdata/archive/v0.311.tar.gz";
sha256 = "159av9wvl3biryxd5pgqcwz6wkdaa0ydmcysmzznx939mfv7w18z";
};
preConfigure = "patchShebangs ./configure";
configureFlags = "--datadir=$(prefix)/data";
meta = {
homepage = https://github.com/vcrhonek/hwdata;
description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}