Merge pull request #5619 from oxij/various-changes-2

Various (hopefully) small changes
This commit is contained in:
Peter Simons 2015-01-07 16:59:10 +01:00
commit 24f5b2a1a0
5 changed files with 41 additions and 2 deletions

View File

@ -100,7 +100,7 @@ in
export HISTSIZE=2000 export HISTSIZE=2000
export HISTFILE=$HOME/.zsh_history export HISTFILE=$HOME/.zsh_history
setopt HIST_IGNORE_DUPS SHARE_HISTORY setopt HIST_IGNORE_DUPS SHARE_HISTORY HIST_FCNTL_LOCK
''; '';
}; };

View File

@ -25,7 +25,8 @@ stdenv.mkDerivation {
++ optional sslSupport openssl ++ optional sslSupport openssl
++ optional gpgSupport gpgme; ++ optional gpgSupport gpgme;
configureFlags = optionalString sslSupport "--enable-ssl"; configureFlags = optional sslSupport "--enable-ssl"
++ optional gpgSupport "--enable-gpgme";
meta = { meta = {
homepage = http://sylpheed.sraoss.jp/en/; homepage = http://sylpheed.sraoss.jp/en/;

View File

@ -326,6 +326,11 @@ with stdenv.lib;
''} ''}
VIRT_DRIVERS y VIRT_DRIVERS y
# Device virtualisation.
${optionalString (versionAtLeast version "3.9") ''
VFIO_PCI_VGA? y
''}
# Media support. # Media support.
${optionalString (versionAtLeast version "3.6") '' ${optionalString (versionAtLeast version "3.6") ''
MEDIA_DIGITAL_TV_SUPPORT y MEDIA_DIGITAL_TV_SUPPORT y

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl, cmake, alsaLib, udev, qt }:
let
version = "0.18.1";
in
stdenv.mkDerivation {
name = "qastools-${version}";
src = fetchurl {
url = "mirror://sourceforge/qastools/qastools_${version}.tar.bz2";
sha256 = "1sac6a0j1881wgpv4491b2f4jnhqkab6xyldmcg1wfqb5qkdgzvg";
};
buildInputs = [
cmake alsaLib udev qt
];
cmakeFlags = [
"-DCMAKE_INSALL_PREFIX=$out"
"-DALSA_INCLUDE=${alsaLib}/include/alsa/version.h"
];
meta = with stdenv.lib; {
description = "Collection of desktop applications for ALSA configuration";
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View File

@ -2251,6 +2251,10 @@ let
openmpi = callPackage ../development/libraries/openmpi { }; openmpi = callPackage ../development/libraries/openmpi { };
qastools = callPackage ../tools/audio/qastools {
qt = qt4;
};
qhull = callPackage ../development/libraries/qhull { }; qhull = callPackage ../development/libraries/qhull { };
qjoypad = callPackage ../tools/misc/qjoypad { }; qjoypad = callPackage ../tools/misc/qjoypad { };