summary refs log tree commit diff
path: root/pkgs/os-specific/linux/uksmtools/default.nix
blob: cd7c7527fe9d1a0c510d6421ff2279ea3eb5b1e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchgit, cmake }:

stdenv.mkDerivation rec {
  name = "uksmtools-${version}";
  version = "2015-09-25";

  # This project uses git submodules, which fetchFromGitHub doesn't support:
  src = fetchgit {
    sha256 = "0ngdmici2vgi2z02brzc3f78j1g1y9myzfxn46zlm1skg94fp692";
    rev = "9f59a3a0b494b758aa91d7d8fa04e21b5e6463c0";
    url = "https://github.com/pfactum/uksmtools.git";
  };

  nativeBuildInputs = [ cmake ];

  enableParallelBuilding = true;

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Tools to control Linux UKSM (Ultra Kernel Same-page Merging)";
    homepage = https://github.com/pfactum/uksmtools/;
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ nckx ];
  };
}