9fb8020e4e
This will probably be mandatory soon, and is a step in the right direction. Removes the deprecated meta.version, and move some meta sections to the end of the file where I should have put them in the first place.
28 lines
766 B
Nix
28 lines
766 B
Nix
{ 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 ];
|
|
};
|
|
}
|