nixpkgs/pkgs/by-name/pi/pikchr/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

57 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchfossil
, tcl
, enableTcl ? true
}:
stdenv.mkDerivation {
pname = "pikchr";
# To update, use the last check-in in https://pikchr.org/home/timeline?r=trunk
version = "0-unstable-2024-02-12";
src = fetchfossil {
url = "https://pikchr.org/home";
rev = "ae3317b0ec2e635c";
hash = "sha256-kCbd6XAaUCwFVYOPPLIux7wW62KRfVnfaxT8Z1RGFfc=";
};
# can't open generated html files
postPatch = ''
substituteInPlace Makefile --replace open "test -f"
'';
nativeBuildInputs = lib.optional enableTcl tcl.tclPackageHook;
buildInputs = lib.optional enableTcl tcl;
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
buildFlags = [ "pikchr" ] ++ lib.optional enableTcl "piktcl";
installPhase = ''
runHook preInstall
install -Dm755 pikchr $out/bin/pikchr
install -Dm755 pikchr.out $out/lib/pikchr.o
install -Dm644 pikchr.h $out/include/pikchr.h
'' + lib.optionalString enableTcl ''
cp -r piktcl $out/lib/piktcl
'' + ''
runHook postInstall
'';
dontWrapTclBinaries = true;
doCheck = true;
meta = with lib; {
description = "PIC-like markup language for diagrams in technical documentation";
homepage = "https://pikchr.org";
license = licenses.bsd0;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
mainProgram = "pikchr";
};
}