Unverified Commit 9f62aa53 authored by Heitor Augusto's avatar Heitor Augusto
Browse files

pop-launcher: migrate to `finalAttrs`

parent 351b9551
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@
  libxkbcommon,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "pop-launcher";
  version = "1.2.6";

  src = fetchFromGitHub {
    owner = "pop-os";
    repo = "launcher";
    rev = version;
    rev = finalAttrs.version;
    hash = "sha256-4wPspv5bpqoG45uUkrtxJTvdbmFkpWv8QBZxsPbGu/M=";
  };

@@ -75,4 +75,4 @@ rustPlatform.buildRustPackage rec {
    mainProgram = "pop-launcher";
    teams = [ lib.teams.cosmic ];
  };
}
})