mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
18 lines
582 B
Nix
18 lines
582 B
Nix
{ callPackage, ... }@args:
|
|
callPackage ../generic.nix ({
|
|
version = "14.3.0";
|
|
hash = "sha256-yTbJeHCmPlelq7BrZQRY3XyNQiovV7NQ1tNh2NfYGbk=";
|
|
vendorHash = "sha256-ySe5YkBMt+1tF/8PWctfAkK/e03cqp5P1aJ2ANz7pLo=";
|
|
yarnHash = "sha256-m934P+KygGiCzr5fDsNTlmZ1T9JxA6P8zTimocQyVi0=";
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"rdp-rs-0.1.0" = "sha256-4NbAsEmyUdmBcHuzx+SLQCGKICC4V4FX4GTK2SzyHC0=";
|
|
};
|
|
};
|
|
extPatches = [
|
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
|
../tsh_14.patch
|
|
];
|
|
} // builtins.removeAttrs args [ "callPackage" ])
|