We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3a41eb9 + 2b7e55c commit abe0bbfCopy full SHA for abe0bbf
pkgs/by-name/rd/rdrview/package.nix
@@ -6,17 +6,18 @@
6
curl,
7
libseccomp,
8
installShellFiles,
9
+ nix-update-script,
10
}:
11
-stdenv.mkDerivation {
12
+stdenv.mkDerivation (finalAttrs: {
13
pname = "rdrview";
- version = "unstable-2021-05-30";
14
+ version = "0.1.3";
15
16
src = fetchFromGitHub {
17
owner = "eafer";
18
repo = "rdrview";
- rev = "444ce3d6efd8989cd6ecfdc0560071b20e622636";
19
- sha256 = "02VC8r8PdcAfMYB0/NtbPnhsWatpLQc4mW4TmSE1+zk=";
+ rev = "v${finalAttrs.version}";
20
+ hash = "sha256-UFHRsaLGa/jv/S+VXtXIMgLuQUPgqbRgD35bBrJyuZA=";
21
};
22
23
buildInputs = [
@@ -42,4 +43,6 @@ stdenv.mkDerivation {
42
43
maintainers = with maintainers; [ djanatyn ];
44
mainProgram = "rdrview";
45
-}
46
+
47
+ passthru.updateScript = nix-update-script { };
48
+})
0 commit comments