mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +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.
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "figlet";
|
|
version = "2.2.5";
|
|
|
|
# some tools can be found here ftp://ftp.figlet.org/pub/figlet/util/
|
|
src = fetchurl {
|
|
url = "ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-${version}.tar.gz";
|
|
sha256 = "0za1ax15x7myjl8jz271ybly8ln9kb9zhm1gf6rdlxzhs07w925z";
|
|
};
|
|
|
|
contributed = fetchzip {
|
|
url = "ftp://ftp.figlet.org/pub/figlet/fonts/contributed.tar.gz";
|
|
hash = "sha256-AyvAoc3IqJeKWgJftBahxb/KJjudeJIY4KD6mElNagQ=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://git.alpinelinux.org/aports/plain/main/figlet/musl-fix-cplusplus-decls.patch?h=3.4-stable&id=71776c73a6f04b6f671430f702bcd40b29d48399";
|
|
name = "musl-fix-cplusplus-decls.patch";
|
|
sha256 = "1720zgrfk9makznqkbjrnlxm7nnhk6zx7g458fv53337n3g3zn7j";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/cmatsuoka/figlet/commit/9a50c1795bc32e5a698b855131ee87c8d7762c9e.patch";
|
|
name = "unistd-on-darwin.patch";
|
|
sha256 = "hyfY87N+yuAwjsBIjpgvcdJ1IbzlR4A2yUJQSzShCRI=";
|
|
})
|
|
];
|
|
|
|
makeFlags = [ "prefix=$(out)" "CC:=$(CC)" "LD:=$(CC)" ];
|
|
|
|
postInstall = "cp -ar ${contributed}/* $out/share/figlet/";
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Program for making large letters out of ordinary text";
|
|
homepage = "http://www.figlet.org/";
|
|
license = lib.licenses.afl21;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|