xargo.nix 455 B

1234567891011121314151617
  1. { rust ? import ./rust.nix }: (
  2. self: super: {
  3. xargo = self.rustPlatform.buildRustPackage rec {
  4. pname = "xargo";
  5. src = self.fetchFromGitHub {
  6. owner = "japaric";
  7. repo = pname;
  8. };
  9. cargoSha256 = "unset";
  10. meta = with self.lib; {
  11. description = "The rust cross-compilation tool";
  12. homepage = "https://github.com/japaric/xargo";
  13. maintainers = maintainers.tailhook;
  14. };
  15. };
  16. }
  17. )