mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +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.
34 lines
874 B
Nix
34 lines
874 B
Nix
{ lib, stdenv, fetchurl, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ctpp2";
|
|
version = "2.8.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://ctpp.havoc.ru/download/${pname}-${version}.tar.gz";
|
|
sha256 = "1z22zfw9lb86z4hcan9hlvji49c9b7vznh7gjm95gnvsh43zsgx8";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
patchPhase = ''
|
|
# include <unistd.h> to fix undefined getcwd
|
|
sed -ie 's/<stdlib.h>/<stdlib.h>\n#include <unistd.h>/' src/CTPP2FileSourceLoader.cpp
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
# RPATH of binary /nix/store/.../bin/ctpp2json contains a forbidden reference to /build/
|
|
"-DCMAKE_SKIP_BUILD_RPATH=ON"
|
|
];
|
|
|
|
doCheck = false; # fails
|
|
|
|
meta = with lib; {
|
|
description = "High performance templating engine";
|
|
homepage = "https://ctpp.havoc.ru/";
|
|
maintainers = [ maintainers.robbinch ];
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|