tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
canokey-qemu: unstable-2022-06-23 -> 0-unstable-2023-06-06
Alyssa Ross
2 years ago
740152c8
a8dbe012
+6
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
virtualization
qemu
canokey-qemu.nix
+6
-3
pkgs/applications/virtualization/qemu/canokey-qemu.nix
···
3
3
stdenv,
4
4
fetchFromGitHub,
5
5
cmake,
6
6
+
unstableGitUpdater,
6
7
}:
7
8
stdenv.mkDerivation rec {
8
9
pname = "canokey-qemu";
9
9
-
version = "unstable-2022-06-23";
10
10
-
rev = "b70af31229f1858089c3366f71b8d771de4a1e84";
10
10
+
version = "0-unstable-2023-06-06";
11
11
+
rev = "151568c34f5e92b086b7a3a62a11c43dd39f628b";
11
12
12
13
src = fetchFromGitHub {
13
14
owner = "canokeys";
14
15
repo = "canokey-qemu";
15
16
inherit rev;
16
17
fetchSubmodules = true;
17
17
-
hash = "sha256-VJb59K/skx+DhoJs5qGUu070hAjQZC2Z6hAMXuX0bMw=";
18
18
+
hash = "sha256-4V/2UOgGWgL+tFJO/k90bCDjWSVyIpxw3nYi9NU/OxA=";
18
19
};
19
20
20
21
postPatch = ''
···
25
26
outputs = [ "out" "dev" ];
26
27
27
28
nativeBuildInputs = [ cmake ];
29
29
+
30
30
+
passthru.updateScript = unstableGitUpdater { };
28
31
29
32
meta = with lib; {
30
33
homepage = "https://github.com/canokeys/canokey-qemu";