canokey-qemu: init at unstable-2022-06-23
This commit is contained in:
parent
64eafc25d6
commit
b3ca7c9f7b
2 changed files with 37 additions and 0 deletions
35
pkgs/applications/virtualization/qemu/canokey-qemu.nix
Normal file
35
pkgs/applications/virtualization/qemu/canokey-qemu.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
cmake,
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "canokey-qemu";
|
||||||
|
version = "unstable-2022-06-23";
|
||||||
|
rev = "b70af31229f1858089c3366f71b8d771de4a1e84";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "canokeys";
|
||||||
|
repo = "canokey-qemu";
|
||||||
|
inherit rev;
|
||||||
|
fetchSubmodules = true;
|
||||||
|
hash = "sha256-VJb59K/skx+DhoJs5qGUu070hAjQZC2Z6hAMXuX0bMw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace canokey-core/CMakeLists.txt \
|
||||||
|
--replace "COMMAND git describe --always --tags --long --abbrev=8 --dirty >>" "COMMAND echo '$rev' >>"
|
||||||
|
'';
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/canokeys/canokey-qemu";
|
||||||
|
description = "CanoKey QEMU Virt Card";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ oxalica ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -30836,6 +30836,8 @@ with pkgs;
|
||||||
|
|
||||||
qemu-utils = callPackage ../applications/virtualization/qemu/utils.nix {};
|
qemu-utils = callPackage ../applications/virtualization/qemu/utils.nix {};
|
||||||
|
|
||||||
|
canokey-qemu = callPackage ../applications/virtualization/qemu/canokey-qemu.nix { };
|
||||||
|
|
||||||
wrapQemuBinfmtP = callPackage ../applications/virtualization/qemu/binfmt-p-wrapper.nix { };
|
wrapQemuBinfmtP = callPackage ../applications/virtualization/qemu/binfmt-p-wrapper.nix { };
|
||||||
|
|
||||||
qgroundcontrol = libsForQt5.callPackage ../applications/science/robotics/qgroundcontrol { };
|
qgroundcontrol = libsForQt5.callPackage ../applications/science/robotics/qgroundcontrol { };
|
||||||
|
|
Loading…
Reference in a new issue