nixpkgs/pkgs/servers/teleport/11/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
651 B
Nix
Raw Normal View History

2023-02-23 18:14:50 +00:00
{ callPackage, ... }@args:
2023-04-02 16:05:44 +00:00
callPackage ../generic.nix ({
2023-10-14 22:43:54 +00:00
version = "11.3.27";
hash = "sha256-A3EeFQsDOaggfb5S+eyRCe/vm054MabfRrcHPxhO0So=";
2023-10-04 06:14:55 +00:00
vendorHash = "sha256-hjMv/H4dlinlv3ku7i1km2/b+6uCdbznHtVOMIjDlUc=";
yarnHash = "sha256-hip0WQVZpx2qfVDmEy4nk4UFYEjX1Xhj8HsIIQ8PF1Y=";
2023-04-08 17:08:23 +00:00
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"rdp-rs-0.1.0" = "sha256-GJfUyiYQwcDTMqt+iik3mFI0f6mu13RJ2XuoDzlg9sU=";
};
};
2023-10-04 06:21:48 +00:00
extPatches = [
# https://github.com/NixOS/nixpkgs/issues/120738
../tsh.patch
# https://github.com/NixOS/nixpkgs/issues/132652
../test.patch
];
2023-02-23 18:14:50 +00:00
} // builtins.removeAttrs args [ "callPackage" ])