mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #281237 from TomaSajt/g810-led
g810-led: fix build, use finalAttrs
This commit is contained in:
commit
629c218ee9
@ -5,14 +5,14 @@
|
||||
, profile ? "/etc/g810-led/profile"
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "g810-led";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "MatMoul";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
repo = "g810-led";
|
||||
rev = "refs/tags/v${finalAttrs.version}";
|
||||
hash = "sha256-GKHtQ7DinqfhclDdPO94KtTLQhhonAoWS4VOvs6CMhY=";
|
||||
};
|
||||
|
||||
@ -22,6 +22,9 @@ stdenv.mkDerivation rec {
|
||||
--replace "/etc/g810-led/profile" "${profile}"
|
||||
'';
|
||||
|
||||
# GCC 13 cannot find `uint16_t` and other similar types by default anymore
|
||||
env.CXXFLAGS = "-include cstdint";
|
||||
|
||||
buildInputs = [
|
||||
hidapi
|
||||
];
|
||||
@ -48,4 +51,4 @@ stdenv.mkDerivation rec {
|
||||
maintainers = with maintainers; [ fab ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user