nixpkgs/pkgs/by-name/li/libfsm/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

63 lines
1.8 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, bmake
, docbook_xsl
, libxslt
}:
stdenv.mkDerivation rec {
pname = "libfsm";
version = "0.1pre2987_${builtins.substring 0 8 src.rev}";
src = fetchFromGitHub {
owner = "katef";
repo = pname;
rev = "087e3389ad2cd5e5c40caeb40387e632567d7258";
hash = "sha256-XWrZxnRbMB609l+sYFf8VsXy3NxqBsBPUrHgKLIyu/I=";
fetchSubmodules = true;
};
nativeBuildInputs = [
bmake
docbook_xsl
libxslt # xsltproc
];
enableParallelBuilding = true;
enableParallelInstalling = false;
# note: build checks value of '$CC' to add some extra cflags, but we don't
# necessarily know which 'stdenv' someone chose, so we leave it alone (e.g.
# if we use stdenv vs clangStdenv, we don't know which, and CC=cc in all
# cases.) it's unclear exactly what should be done if we want those flags,
# but the defaults work fine.
makeFlags = [ "-r" "PREFIX=$(out)" ];
# fix up multi-output install. we also have to fix the pkg-config libdir
# file; it uses prefix=$out; libdir=${prefix}/lib, which is wrong in
# our case; libdir should really be set to the $lib output.
postInstall = ''
mkdir -p $lib $dev/lib
mv $out/lib $lib/lib
mv $out/include $dev/include
mv $out/share/pkgconfig $dev/lib/pkgconfig
rmdir $out/share
for x in libfsm.pc libre.pc; do
substituteInPlace "$dev/lib/pkgconfig/$x" \
--replace 'libdir=''${prefix}/lib' "libdir=$lib/lib"
done
'';
outputs = [ "out" "lib" "dev" ];
meta = with lib; {
description = "DFA regular expression library & friends";
homepage = "https://github.com/katef/libfsm";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice ];
};
}