summary refs log tree commit diff
path: root/pkgs/development/compilers/sdcc
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-05-20 19:33:18 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-05-20 20:28:15 +0200
commit05bb66ce20d8a2108157aa6d3e136634cb8d6499 (patch)
tree5bb715e4ce7400f0a5b6d668ba70cb935f2c78a3 /pkgs/development/compilers/sdcc
parenteaeb0c9c7de5a57f7ed41cac1e6b60b3710be60d (diff)
downloadnixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.tar
nixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.tar.gz
nixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.tar.bz2
nixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.tar.lz
nixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.tar.xz
nixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.tar.zst
nixlib-05bb66ce20d8a2108157aa6d3e136634cb8d6499.zip
Add myself as maintainer for several packages
And set missing meta.platforms for the packages I've added earlier.
Diffstat (limited to 'pkgs/development/compilers/sdcc')
-rw-r--r--pkgs/development/compilers/sdcc/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/compilers/sdcc/default.nix b/pkgs/development/compilers/sdcc/default.nix
index ebc052764f2d..2794faf13f71 100644
--- a/pkgs/development/compilers/sdcc/default.nix
+++ b/pkgs/development/compilers/sdcc/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     ${if gputils == null then "--disable-pic14-port --disable-pic16-port" else ""}
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Small Device C Compiler";
     longDescription = ''
       SDCC is a retargettable, optimizing ANSI - C compiler suite that targets
@@ -27,6 +27,8 @@ stdenv.mkDerivation rec {
       PIC18 targets. It can be retargeted for other microprocessors.
     '';
     homepage = http://sdcc.sourceforge.net/;
-    license = stdenv.lib.licenses.gpl2;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = maintainers.bjornfor;
   };
 }