Unverified Commit 9a6c897b authored by DontEatOreo's avatar DontEatOreo
Browse files

gpu-screen-recorder: add finalAttrs pattern

parent 90dfc4d3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -23,12 +23,12 @@
  wrapperDir ? "/run/wrappers/bin",
}:

stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
  pname = "gpu-screen-recorder";
  version = "4.1.11";

  src = fetchurl {
    url = "https://dec05eba.com/snapshot/gpu-screen-recorder.git.4.1.11.tar.gz";
    url = "https://dec05eba.com/snapshot/gpu-screen-recorder.git.${finalAttrs.version}.tar.gz";
    hash = "sha256-XCs40MzObfNtErxnN3rYQ722TAiREcbaJZet+VJfimg=";
  };

@@ -87,4 +87,4 @@ stdenv.mkDerivation {
    maintainers = [ lib.maintainers.babbaj ];
    platforms = [ "x86_64-linux" ];
  };
}
})