Unverified Commit 31a3e7dc authored by Tom van Dijk's avatar Tom van Dijk
Browse files

live-server: `rec` -> `finalAttrs`

parent 6f0de2a6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@
  pkg-config,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "live-server";
  version = "0.10.1";

  src = fetchFromGitHub {
    owner = "lomirus";
    repo = "live-server";
    rev = "v${version}";
    rev = "v${finalAttrs.version}";
    hash = "sha256-0IP7F8+Vdl/h4+zcghRqowvzz6zjQYDTjMSZPuGOOj4=";
  };

@@ -33,4 +33,4 @@ rustPlatform.buildRustPackage rec {
    maintainers = [ maintainers.philiptaron ];
    platforms = platforms.unix;
  };
}
})