mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Do not pass pkgs to virtuoso
svn path=/nixpkgs/trunk/; revision=20958
This commit is contained in:
parent
f6c28984f2
commit
99fda7a42f
2 changed files with 4 additions and 5 deletions
|
@ -1,7 +1,4 @@
|
|||
a:
|
||||
let
|
||||
inherit (a) stdenv fetchurl libxml2 openssl readline;
|
||||
in
|
||||
{ stdenv, fetchurl, libxml2, openssl, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "virtuoso-opensource-6.1.0";
|
||||
|
|
|
@ -5634,7 +5634,9 @@ let
|
|||
inherit fetchurl stdenv jdk apacheAnt unzip;
|
||||
};
|
||||
|
||||
virtuoso = makeOverridable (import ../servers/sql/virtuoso) pkgs;
|
||||
virtuoso = makeOverridable (import ../servers/sql/virtuoso) {
|
||||
inherit stdenv fetchurl libxml2 openssl readline;
|
||||
};
|
||||
|
||||
vsftpd = import ../servers/ftp/vsftpd {
|
||||
inherit fetchurl openssl stdenv libcap pam;
|
||||
|
|
Loading…
Reference in a new issue