summary refs log tree commit diff
path: root/pkgs/tools/misc/bdf2psf
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2015-12-11 19:45:07 +0100
committerrnhmjoj <micheleguerinirocco@me.com>2015-12-11 19:45:07 +0100
commit941ef62cae0a84886b17fe7708d8097d3a78b5c6 (patch)
treebf1afdf6574abc007b38b4ebda4e9c5335a37aa4 /pkgs/tools/misc/bdf2psf
parent146784f835a6cadc65812c5adf76533c18e5be61 (diff)
downloadnixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.tar
nixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.tar.gz
nixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.tar.bz2
nixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.tar.lz
nixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.tar.xz
nixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.tar.zst
nixpkgs-941ef62cae0a84886b17fe7708d8097d3a78b5c6.zip
bdf2psf: 1.132 -> 1.134
Diffstat (limited to 'pkgs/tools/misc/bdf2psf')
-rw-r--r--pkgs/tools/misc/bdf2psf/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/tools/misc/bdf2psf/default.nix b/pkgs/tools/misc/bdf2psf/default.nix
index 342c014faaa..192aed7489d 100644
--- a/pkgs/tools/misc/bdf2psf/default.nix
+++ b/pkgs/tools/misc/bdf2psf/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "bdf2psf-${version}";
-  version = "1.132";
+  version = "1.134";
 
   src = fetchurl {
     url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb";
-    sha256 = "01r8v6qi6klsgi66ld86c78cdz308mywrm9j101d73nsxgx6qhzz";
+    sha256 = "1am5ka5qrbh60jjihzqac03ii3ydprvqm3w54dc55a0zwl61njsz";
   };
 
   buildInputs = [ dpkg ];
@@ -21,12 +21,14 @@ stdenv.mkDerivation rec {
     cp -r . $out
   ";
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "BDF to PSF converter";
     homepage = https://packages.debian.org/sid/bdf2psf;
     longDescription = ''
       Font converter to generate console fonts from BDF source fonts
     '';
-    license = stdenv.lib.licenses.gpl2;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ rnhmjoj ];
+    platforms = platforms.unix;
   };
-}
\ No newline at end of file
+}