about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2019-02-13 20:04:08 +0000
committerGitHub <noreply@github.com>2019-02-13 20:04:08 +0000
commit8384cfe455f3551839d9bfb483994d3e15b9e25c (patch)
tree307a7bbec2162fe2bcddffb0626f7b7d89cb8343 /pkgs/applications/misc
parent7cc1f8e032b4e532cf4f9f407bad344918e24b3f (diff)
parent88ca6dd78a320d8eb8ee99a074e7ffceedeabc1e (diff)
downloadnixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.tar
nixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.tar.gz
nixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.tar.bz2
nixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.tar.lz
nixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.tar.xz
nixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.tar.zst
nixlib-8384cfe455f3551839d9bfb483994d3e15b9e25c.zip
Merge pull request #55129 from oxij/tree/move-defaults-to-package-files
all-packages.nix: move defaults to package files
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/evilvte/default.nix2
-rw-r--r--pkgs/applications/misc/rxvt_unicode/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/evilvte/default.nix b/pkgs/applications/misc/evilvte/default.nix
index f088016938aa..c7fcf18e4e3d 100644
--- a/pkgs/applications/misc/evilvte/default.nix
+++ b/pkgs/applications/misc/evilvte/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchgit, makeWrapper, pkgconfig,
   gnome2, glib, pango, cairo, gdk_pixbuf, atk, freetype, xorg,
-  configH
+  configH ? ""
 }:
 
 stdenv.mkDerivation rec {
diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix
index 2ae33a1eaa51..d198c5951359 100644
--- a/pkgs/applications/misc/rxvt_unicode/default.nix
+++ b/pkgs/applications/misc/rxvt_unicode/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, makeDesktopItem, perlSupport, libX11, libXt, libXft,
+{ stdenv, fetchurl, makeDesktopItem, perlSupport ? true, libX11, libXt, libXft,
   ncurses, perl, fontconfig, freetype, pkgconfig, libXrender,
-  gdkPixbufSupport, gdk_pixbuf, unicode3Support }:
+  gdkPixbufSupport ? true, gdk_pixbuf, unicode3Support ? true }:
 
 let
   pname = "rxvt-unicode";