xow: init at 0.2

This commit is contained in:
Philipp Middendorf
2020-03-30 00:16:21 +03:00
committed by Jan Solanti
parent 1992768157
commit 35035a543c
5 changed files with 85 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, libusb, gitMinimal }:
stdenv.mkDerivation rec {
pname = "xow";
version = "0.2";
src = fetchFromGitHub {
owner = "medusalix";
repo = "xow";
rev = "v${version}";
sha256 = "03ajal91xi52svzy621aa4jcdf0vj4pqd52kljam0wryrlmcpbr3";
};
makeFlags = [ "BUILD=RELEASE" "VERSION=${version}" ];
enableParallelBuilding = true;
buildInputs = [ libusb ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp xow $out/bin
runHook postInstall
'';
meta = with stdenv.lib; {
homepage = "https://github.com/medusalix/xow";
description = "Linux driver for the Xbox One wireless dongle";
license = licenses.gpl2Plus;
maintainers = [ maintainers.pmiddend ];
platforms = platforms.linux;
};
}