Unverified Commit 267994cf authored by Ethan Carter Edwards's avatar Ethan Carter Edwards
Browse files

yeahconsole: modernize



Change to tag and finalAttrs pattern. Noticed while looking for zhf
fixes.

Signed-off-by: default avatarEthan Carter Edwards <ethan@ethancedwards.com>
parent e1cd3dff
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@
  libXrandr,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "yeahconsole";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "jceb";
    repo = "yeahconsole";
    rev = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s=";
  };

@@ -33,4 +33,4 @@ stdenv.mkDerivation rec {
    maintainers = with lib.maintainers; [ jceb ];
    platforms = lib.platforms.all;
  };
}
})