{ pkgs ? import {} }: pkgs.buildGoModule rec { pname = "rust-features"; version = "git"; src = ./.; vendorHash = "sha256-WaDp7wKYHeV8hAAwPGmp1Dv8Hkwzl+Mzr8yzuUP2TgQ="; nativeBuildInputs = [pkgs.makeWrapper]; postInstall = '' wrapProgram $out/bin/rust-features --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.git pkgs.bash ]} ''; }