tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
rdrview: add update script
Youwen Wu
1 year ago
2b7e55c3
9b9cff0c
+3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
rd
rdrview
package.nix
+3
pkgs/by-name/rd/rdrview/package.nix
···
6
6
curl,
7
7
libseccomp,
8
8
installShellFiles,
9
9
+
nix-update-script,
9
10
}:
10
11
11
12
stdenv.mkDerivation (finalAttrs: {
···
42
43
maintainers = with maintainers; [ djanatyn ];
43
44
mainProgram = "rdrview";
44
45
};
46
46
+
47
47
+
passthru.updateScript = nix-update-script { };
45
48
})