2014-04-09 00:21:06 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2014-04-01 06:10:28 +00:00
|
|
|
|
2014-04-09 00:21:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lockdep-${version}";
|
2015-07-20 18:31:02 +00:00
|
|
|
version = "4.1.2";
|
|
|
|
fullver = "4.1.2";
|
2014-04-09 00:21:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-20 18:31:02 +00:00
|
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
|
|
sha256 = "1mdyjhnzhh254cblahqmpsk226z006z6sm9dmwvg6jlhpsw4cjhy";
|
2014-04-09 00:21:06 +00:00
|
|
|
};
|
2014-04-01 06:10:28 +00:00
|
|
|
|
|
|
|
preConfigure = "cd tools/lib/lockdep";
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/lib $out/include
|
|
|
|
|
|
|
|
cp -R include/liblockdep $out/include
|
|
|
|
make install DESTDIR=$out prefix=""
|
|
|
|
|
2014-10-09 21:56:09 +00:00
|
|
|
substituteInPlace $out/bin/lockdep --replace "./liblockdep.so" "$out/lib/liblockdep.so.$fullver"
|
2014-04-01 06:10:28 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Userspace locking validation tool built on the Linux kernel";
|
2014-04-01 06:10:28 +00:00
|
|
|
homepage = "https://kernel.org/";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|