mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mceinject";
|
|
version = "unstable-2013-01-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andikleen";
|
|
repo = "mce-inject";
|
|
rev = "4cbe46321b4a81365ff3aafafe63967264dbfec5";
|
|
sha256 = "0gjapg2hrlxp8ssrnhvc19i3r1xpcnql7xv0zjgbv09zyha08g6z";
|
|
};
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Os -g -Wall";
|
|
|
|
NIX_LDFLAGS = [ "-lpthread" ];
|
|
|
|
makeFlags = [ "prefix=" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
installFlags = [ "destdir=$(out)" "manprefix=/share" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to inject machine checks into x86 kernel for testing";
|
|
mainProgram = "mce-inject";
|
|
longDescription = ''
|
|
mce-inject allows to inject machine check errors on the software level
|
|
into a running Linux kernel. This is intended for validation of the
|
|
kernel machine check handler.
|
|
'';
|
|
homepage = "https://github.com/andikleen/mce-inject/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ arkivm ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|