Merge pull request #6676 from abbradar/smallfixes

Small fixes
This commit is contained in:
Nikolay Amiantov 2015-03-05 21:02:12 +03:00
commit ac700c6dec
4 changed files with 8 additions and 5 deletions

View File

@ -7,14 +7,16 @@ let
in
{
options = {
uim = {
enable = mkOption {
type = types.bool;
default = false;
example = true;
description = "enable UIM input method";
description = "Enable UIM input method";
};
};
};
config = mkIf cfg.enable {

View File

@ -97,7 +97,7 @@ in
# lightdm relaunches itself via just `lightdm`, so needs to be on the PATH
execCmd = ''
export PATH=${lightdm}/sbin:$PATH
${lightdm}/sbin/lightdm --log-dir=/var/log --run-dir=/run --config=${lightdmConf}
exec ${lightdm}/sbin/lightdm --log-dir=/var/log --run-dir=/run --config=${lightdmConf}
'';
};

View File

@ -27,9 +27,10 @@ stdenv.mkDerivation rec {
builder = ./builder.sh;
meta = {
meta = with stdenv.lib; {
description = "Samsung's Linux drivers; includes binaries without source code";
homepage = "http://www.samsung.com/";
license = "samsung"; # Binary-only
license = licenses.unfree;
platforms = platforms.linux;
};
}

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake, anthy, ... }:
{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake, anthy}:
stdenv.mkDerivation rec {
version = "1.8.6";