mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 19:25:59 +01:00
nix: remove merged hwdata override
This commit is contained in:
parent
ea2ef63de5
commit
215c7bd3cb
2 changed files with 1 additions and 30 deletions
|
@ -26,7 +26,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
overlays = [
|
overlays = [
|
||||||
(_: prev: {
|
(_: prev: {
|
||||||
hwdata = prev.callPackage ./nix/hwdata.nix {};
|
|
||||||
libdrm = prev.libdrm.overrideAttrs (old: rec {
|
libdrm = prev.libdrm.overrideAttrs (old: rec {
|
||||||
version = "2.4.114";
|
version = "2.4.114";
|
||||||
src = prev.fetchurl {
|
src = prev.fetchurl {
|
||||||
|
@ -75,7 +74,7 @@
|
||||||
default = self.packages.${system}.hyprland;
|
default = self.packages.${system}.hyprland;
|
||||||
});
|
});
|
||||||
|
|
||||||
devShells = genSystems (system: rec {
|
devShells = genSystems (system: {
|
||||||
default = pkgsFor.${system}.mkShell.override {stdenv = pkgsFor.${system}.gcc12Stdenv;} {
|
default = pkgsFor.${system}.mkShell.override {stdenv = pkgsFor.${system}.gcc12Stdenv;} {
|
||||||
name = "hyprland-shell";
|
name = "hyprland-shell";
|
||||||
nativeBuildInputs = with pkgsFor.${system}; [
|
nativeBuildInputs = with pkgsFor.${system}; [
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
{ lib, stdenv, fetchFromGitHub }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "hwdata";
|
|
||||||
version = "0.363";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "vcrhonek";
|
|
||||||
repo = "hwdata";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-A6GNrHc/t2SVyAyJWmzQTa+pD9wGESsz7DNruW2kH4s=";
|
|
||||||
};
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
patchShebangs ./configure
|
|
||||||
'';
|
|
||||||
|
|
||||||
configureFlags = [ "--datadir=${placeholder "out"}/share" ];
|
|
||||||
|
|
||||||
doCheck = false; # this does build machine-specific checks (e.g. enumerates PCI bus)
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://github.com/vcrhonek/hwdata";
|
|
||||||
description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
|
|
||||||
license = lib.licenses.gpl2Plus;
|
|
||||||
platforms = lib.platforms.all;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue