My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/veikk-linux-driver-gui/default.nix

32 lines
745 B

{ lib, mkDerivation, fetchFromGitHub, gnumake, qmake }:
mkDerivation rec {
pname = "veikk-linux-driver-gui";
version = "2.0";
src = fetchFromGitHub {
owner = "jlam55555";
repo = pname;
rev = "v${version}";
sha256 = "02g1q79kwjlzg95w38a1d7nxvcry8xcsvhax2js4c7xqvzhkki5j";
};
nativeBuildInputs = [ qmake ];
postBuild = ''
make all clean
'';
installPhase = ''
mkdir -p $out/bin
cp veikk-linux-driver-gui $out/bin
'';
meta = with lib; {
description = "Configuration tool for the VEIKK Linux driver";
homepage = "https://github.com/jlam55555/veikk-linux-driver-gui/";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ nicbk ];
};
}