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
stdenv,
4
fetchFromGitHub,
5
cmake,
0
6
}:
7
stdenv.mkDerivation rec {
8
pname = "canokey-qemu";
9
-
version = "unstable-2022-06-23";
10
-
rev = "b70af31229f1858089c3366f71b8d771de4a1e84";
11
12
src = fetchFromGitHub {
13
owner = "canokeys";
14
repo = "canokey-qemu";
15
inherit rev;
16
fetchSubmodules = true;
17
-
hash = "sha256-VJb59K/skx+DhoJs5qGUu070hAjQZC2Z6hAMXuX0bMw=";
18
};
19
20
postPatch = ''
···
25
outputs = [ "out" "dev" ];
26
27
nativeBuildInputs = [ cmake ];
0
0
28
29
meta = with lib; {
30
homepage = "https://github.com/canokeys/canokey-qemu";
···
3
stdenv,
4
fetchFromGitHub,
5
cmake,
6
+
unstableGitUpdater,
7
}:
8
stdenv.mkDerivation rec {
9
pname = "canokey-qemu";
10
+
version = "0-unstable-2023-06-06";
11
+
rev = "151568c34f5e92b086b7a3a62a11c43dd39f628b";
12
13
src = fetchFromGitHub {
14
owner = "canokeys";
15
repo = "canokey-qemu";
16
inherit rev;
17
fetchSubmodules = true;
18
+
hash = "sha256-4V/2UOgGWgL+tFJO/k90bCDjWSVyIpxw3nYi9NU/OxA=";
19
};
20
21
postPatch = ''
···
26
outputs = [ "out" "dev" ];
27
28
nativeBuildInputs = [ cmake ];
29
+
30
+
passthru.updateScript = unstableGitUpdater { };
31
32
meta = with lib; {
33
homepage = "https://github.com/canokeys/canokey-qemu";