Commit 75c279bf authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

vimPlugins.sniprun: 1.3.5 -> 1.3.6

parent 17e9cd41
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -966,18 +966,23 @@ self: super: {

  sniprun =
    let
      version = "1.3.5";
      version = "1.3.6";
      src = fetchFromGitHub {
        owner = "michaelb";
        repo = "sniprun";
        rev = "v${version}";
        hash = "sha256-D2nHei7mc7Yn8rgFiWFyaR87wQuryv76B25BYOpyp2I=";
        hash = "sha256-1xvB/YhpHlOhxbkIGlgQyTlO5ljWPHfOm+tuhKRTXAw=";
      };
      sniprun-bin = rustPlatform.buildRustPackage {
        pname = "sniprun-bin";
        inherit version src;

        cargoHash = "sha256-TG84BeYm7K5Dn0CvMvv1gzqeX246JPks1qcwkfcsG8c=";
        # Cargo.lock is outdated
        preBuild = ''
          cargo update --offline
        '';

        cargoHash = "sha256-pML4ZJYivC/tu/7yvbB/VHfXTT+UpLZuS1Y3iNXt2Ks=";

        nativeBuildInputs = [ makeWrapper ];