Unverified Commit 46ef9d5c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

level-zero: add changelog to meta

parent f8df93c6
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, addOpenGLRunpath, cmake }:
{ lib
, stdenv
, fetchFromGitHub
, addOpenGLRunpath
, cmake
}:

stdenv.mkDerivation rec {
  pname = "level-zero";
@@ -7,8 +12,8 @@ stdenv.mkDerivation rec {
  src = fetchFromGitHub {
    owner = "oneapi-src";
    repo = "level-zero";
    rev = "v${version}";
    sha256 = "sha256-zzlecBk7Mi3Nhj4eIAp81pq7+lIiKpvEaNeXuJKDPII=";
    rev = "refs/tags/v${version}";
    hash = "sha256-zzlecBk7Mi3Nhj4eIAp81pq7+lIiKpvEaNeXuJKDPII=";
  };

  nativeBuildInputs = [ cmake addOpenGLRunpath ];
@@ -20,6 +25,7 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "oneAPI Level Zero Specification Headers and Loader";
    homepage = "https://github.com/oneapi-src/level-zero";
    changelog = "https://github.com/oneapi-src/level-zero/blob/v${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = [ maintainers.ziguana ];
  };