Commit 9ade697f authored by Markus Theil's avatar Markus Theil
Browse files

rshim-user-space: switch to finalAttrs

parent 361f9e55
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -23,14 +23,14 @@
  withBfbInstall ? true,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "rshim-user-space";
  version = "2.6.6";

  src = fetchFromGitHub {
    owner = "Mellanox";
    repo = "rshim-user-space";
    rev = "rshim-${version}";
    rev = "rshim-${finalAttrs.version}";
    hash = "sha256-OdrJnOm0QegQ2ex1hFSWPfwYuBnXpGeMJ2YfvNyIwTU=";
  };

@@ -99,4 +99,4 @@ stdenv.mkDerivation rec {
      thillux
    ];
  };
}
})