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.
50 lines
1.7 KiB
Nix
50 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch
|
|
, libtool, bison, groff, ghostscript, gettext
|
|
, acl, libcap, lsof }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "explain";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libexplain/libexplain-${version}.tar.gz";
|
|
hash = "sha256-KIY7ZezMdJNOI3ysQTZMs8GALDbJ4jGO0EF0YP7oP4A=";
|
|
};
|
|
|
|
patches = let
|
|
debian-src = "https://sources.debian.org/data/main";
|
|
debian-ver = "${version}.D001-12";
|
|
debian-patch = fname: hash: fetchpatch {
|
|
name = fname;
|
|
url = "${debian-src}/libe/libexplain/${debian-ver}/debian/patches/${fname}";
|
|
hash = hash;
|
|
};
|
|
in [
|
|
(debian-patch "sanitize-bison.patch"
|
|
"sha256-gU6JG32j2yIOwehZTUSvIr4TSDdlg+p1U3bhfZHMEDY=")
|
|
(debian-patch "03_fsflags-4.5.patch"
|
|
"sha256-ML7Qvf85vEBp+iwm6PSosMAn/frYdEOSHRToEggmR8M=")
|
|
(debian-patch "linux5.11.patch"
|
|
"sha256-N7WwnTfwOxBfIiKntcFOqHTH9r2gd7NMEzic7szzR+Y=")
|
|
(debian-patch "termiox-no-more-exists-since-kernel-5.12.patch"
|
|
"sha256-cocgEYKoDMDnGk9VNQDtgoVxMGnnNpdae0hzgUlacOw=")
|
|
(debian-patch "gcc-10.patch"
|
|
"sha256-YNcYGyOOqPUuwpUpXGcR7zsWbepVg8SAqcVKlxENSQk=")
|
|
];
|
|
|
|
nativeBuildInputs = [ libtool bison groff ghostscript gettext ];
|
|
buildInputs = [ acl libcap lsof ];
|
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library and utility to explain system call errors";
|
|
mainProgram = "explain";
|
|
homepage = "https://libexplain.sourceforge.net";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ McSinyx ];
|
|
platforms = platforms.unix;
|
|
# never built on aarch64-linux since first introduction in nixpkgs
|
|
broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64;
|
|
};
|
|
}
|