Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / ao / aocl-utils / package.nix
blob622c62ee96d65d70a6771048c80452a6d94eb895
1 { lib, stdenv, fetchFromGitHub, cmake } :
3 stdenv.mkDerivation rec {
4   pname = "aocl-utils";
5   version = "4.1";
7   src = fetchFromGitHub {
8     owner = "amd";
9     repo = "aocl-utils";
10     rev = version;
11     hash = "sha256-7Vc3kE+YfqIt6VfvSamsVQRemolzs1sNJUVUZFKk/O8=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "Interface to all AMD AOCL libraries to access CPU features";
18     homepage = "https://github.com/amd/aocl-utils";
19     license = licenses.bsd3;
20     platforms = [ "x86_64-linux" ];
21     maintainers = [ maintainers.markuskowa ];
22   };