mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
33 lines
796 B
Nix
33 lines
796 B
Nix
|
{
|
||
|
CaptureTiny,
|
||
|
FileWhich,
|
||
|
PathTiny,
|
||
|
AlienBuild,
|
||
|
URI,
|
||
|
MojoDOM58,
|
||
|
IOSocketSSL,
|
||
|
SortVersions,
|
||
|
buildPerlPackage,
|
||
|
cmake,
|
||
|
lib,
|
||
|
fetchurl,
|
||
|
}:
|
||
|
buildPerlPackage {
|
||
|
pname = "Alien-cmake3";
|
||
|
version = "0.08";
|
||
|
src = fetchurl {
|
||
|
url = "mirror://cpan/authors/id/P/PL/PLICEASE/Alien-cmake3-0.08.tar.gz";
|
||
|
hash = "sha256-k9+xFG8AU+we1ZVY9fbY+F2HuCKoQzxkhdQZxPAYLx8=";
|
||
|
};
|
||
|
buildInputs = [CaptureTiny FileWhich PathTiny];
|
||
|
nativeBuildInputs = [cmake];
|
||
|
propagatedBuildInputs = [AlienBuild URI MojoDOM58 IOSocketSSL SortVersions];
|
||
|
meta = {
|
||
|
homepage = "https://metacpan.org/pod/Alien::cmake3";
|
||
|
description = "Find or download or build cmake 3 or better";
|
||
|
license = with lib.licenses; [artistic1 gpl1Plus];
|
||
|
};
|
||
|
doCheck = false;
|
||
|
dontUseCmakeConfigure = true;
|
||
|
}
|