nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 24 lines 343 B view raw
1{ 2 lib, 3 mkKdeDerivation, 4 replaceVars, 5 openssl, 6 pkg-config, 7 qtwayland, 8 freerdp, 9}: 10mkKdeDerivation { 11 pname = "krdp"; 12 13 patches = [ 14 (replaceVars ./hardcode-openssl-path.patch { 15 openssl = lib.getExe openssl; 16 }) 17 ]; 18 19 extraNativeBuildInputs = [ pkg-config ]; 20 extraBuildInputs = [ 21 qtwayland 22 freerdp 23 ]; 24}