Commit 08d8b5b4 authored by toastal's avatar toastal Committed by Austin Seipp
Browse files

h2o: remove rec in favor of finalAttrs

parent 23cf0d11
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@
  zlib,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "h2o";
  version = "2.3.0-beta2";

  src = fetchFromGitHub {
    owner = "h2o";
    repo = "h2o";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    sha256 = "0lwg5sfsr7fw7cfy0hrhadgixm35b5cgcvlhwhbk89j72y1bqi6n";
  };

@@ -46,4 +46,4 @@ stdenv.mkDerivation rec {
    maintainers = with maintainers; [ thoughtpolice ];
    platforms = platforms.linux;
  };
}
})