linuxPackages.xpadneo: 0.9.4 -> 0.9.5

This commit is contained in:
Kira Bruneau 2022-09-12 13:09:13 -04:00
parent 998f0f7924
commit 216a21c638
2 changed files with 8 additions and 8 deletions

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, kernel, bluez }: { lib, stdenv, fetchFromGitHub, kernel, bluez }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "xpadneo"; pname = "xpadneo";
version = "0.9.4"; version = "0.9.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "atar-axis"; owner = "atar-axis";
repo = pname; repo = "xpadneo";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${finalAttrs.version}";
sha256 = "sha256-4zd+x9uYl0lJgePM9LEgLYFqvcw6VPF/CbR1XiYSwGE="; sha256 = "sha256-rT2Mq40fE055FemDG7PBjt+cxgIHJG9tTjtw2nW6B98=";
}; };
setSourceRoot = '' setSourceRoot = ''
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
"-C" "-C"
"${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"M=$(sourceRoot)" "M=$(sourceRoot)"
"VERSION=${version}" "VERSION=${finalAttrs.version}"
]; ];
buildFlags = [ "modules" ]; buildFlags = [ "modules" ];
@ -36,4 +36,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ kira-bruneau ]; maintainers = with maintainers; [ kira-bruneau ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} })