summary refs log tree commit diff
path: root/pkgs/os-specific/linux/psftools
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@disroot.org>2020-10-07 02:00:23 -0400
committerDmitry Bogatov <KAction@disroot.org>2020-10-17 00:00:00 -0400
commit78d9b5fb1a668f202e167ef44c8e125c53b1e88d (patch)
tree047daa3954e03be7dacb97a4a4008081a241db13 /pkgs/os-specific/linux/psftools
parent57adf7c2f86e4a76c39a18b7f9e9314e4f8d89a7 (diff)
downloadnixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.tar
nixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.tar.gz
nixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.tar.bz2
nixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.tar.lz
nixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.tar.xz
nixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.tar.zst
nixpkgs-78d9b5fb1a668f202e167ef44c8e125c53b1e88d.zip
psftools: init at 1.0.13
Diffstat (limited to 'pkgs/os-specific/linux/psftools')
-rw-r--r--pkgs/os-specific/linux/psftools/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/psftools/default.nix b/pkgs/os-specific/linux/psftools/default.nix
new file mode 100644
index 00000000000..a71e7ef0dcc
--- /dev/null
+++ b/pkgs/os-specific/linux/psftools/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl }:
+stdenv.mkDerivation rec {
+  pname = "psftools";
+  version = "1.0.13";
+  src = fetchurl {
+    url = "https://www.seasip.info/Unix/PSF/${pname}-${version}.tar.gz";
+    sha256 = "0rgg1lhryqi6sgm4afhw0z6pjivdw4hyhpxanj8rabyabn4fcqcw";
+  };
+  outputs = ["out" "man" "dev" "lib"];
+
+  meta = with stdenv.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.linux;
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ kaction ];
+  };
+}