mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
25 lines
817 B
Nix
25 lines
817 B
Nix
{ lib, stdenv, fetchurl }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "psftools";
|
|
version = "1.0.14";
|
|
src = fetchurl {
|
|
url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz";
|
|
sha256 = "17nia5n5rabbh42gz51c8y53rjwddria4j3wvzk8dd0llj7k1y6w";
|
|
};
|
|
outputs = ["out" "man" "dev" "lib"];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.seasip.info/Unix/PSF";
|
|
description = "Conversion tools for .PSF fonts";
|
|
longDescription = ''
|
|
The PSFTOOLS are designed to manipulate fixed-width bitmap fonts,
|
|
such as DOS or Linux console fonts. Both the PSF1 (8 pixels wide)
|
|
and PSF2 (any width) formats are supported; the default output
|
|
format is PSF2.
|
|
'';
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ kaction ];
|
|
};
|
|
}
|