summary refs log tree commit diff
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-02-16 16:38:46 -0500
committerShea Levy <shea@shealevy.com>2013-02-16 16:38:46 -0500
commit8d35dabd654bdef676eb3d743d94e8a81267ab56 (patch)
treee744db79d454f2b28e1d01568f5a91abe2f64c76
parente95c97e698d128bdc918a72f7de11e78d86c0ef8 (diff)
downloadnixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.tar
nixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.tar.gz
nixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.tar.bz2
nixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.tar.lz
nixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.tar.xz
nixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.tar.zst
nixlib-8d35dabd654bdef676eb3d743d94e8a81267ab56.zip
e17.embryo: Fix meta.
Meta attributes, if they are lists, must be lists of strings.
-rw-r--r--pkgs/desktops/e17/embryo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/desktops/e17/embryo/default.nix b/pkgs/desktops/e17/embryo/default.nix
index 29f157545db1..59b5540f25d4 100644
--- a/pkgs/desktops/e17/embryo/default.nix
+++ b/pkgs/desktops/e17/embryo/default.nix
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
       untouched.
     '';
     homepage = http://enlightenment.org/;
-    license = with stdenv.lib.licenses; [ bsd2 bsd3 ];  # not sure
+    license = with stdenv.lib.licenses; [ bsd2.shortName bsd3.shortName ];  # not sure
   };
 }