nixpkgs/pkgs/os-specific/linux/uksmtools/default.nix

28 lines
766 B
Nix
Raw Normal View History

2015-12-17 01:39:44 +00:00
{ stdenv, fetchgit, cmake }:
stdenv.mkDerivation rec {
2015-12-17 01:39:44 +00:00
name = "uksmtools-${version}";
version = "2015-09-25";
2015-12-17 01:39:44 +00:00
# This project uses git submodules, which fetchFromGitHub doesn't support:
2015-12-17 01:39:44 +00:00
src = fetchgit {
sha256 = "1nj53f24qjp0d87fzrz0y72rmv6lhxyiaqrsbd9v423h5zpmkrnj";
2015-12-17 01:39:44 +00:00
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 ];
};
}