tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Fix typo
William A. Kennington III
10 years ago
b9a366e5
b07929b0
+4
-4
3 changed files
expand all
collapse all
unified
split
pkgs
applications
audio
minimodem
default.nix
desktops
gnome-3
3.16
core
rest
default.nix
servers
mail
opensmtpd
default.nix
+1
-1
pkgs/applications/audio/minimodem/default.nix
···
1
1
-
{ stdenv, fetchurl, pkgconfig, fftw, fftwSinglePrec, alsaLib, libsndfile, linbpulseaudio }:
1
1
+
{ stdenv, fetchurl, pkgconfig, fftw, fftwSinglePrec, alsaLib, libsndfile, libpulseaudio }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
version = "0.19";
+2
-2
pkgs/desktops/gnome-3/3.16/core/rest/default.nix
···
1
1
-
{ stdenv, fetchurl, pkgconfig, glib, libsoup, gobjectIntrospection, cacerts }:
1
1
+
{ stdenv, fetchurl, pkgconfig, glib, libsoup, gobjectIntrospection, cacert }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "rest-0.7.92";
···
10
10
11
11
buildInputs = [ pkgconfig glib libsoup gobjectIntrospection];
12
12
13
13
-
configureFlags = "--with-ca-certificates=${cacerts}/ca-bundle.crt";
13
13
+
configureFlags = "--with-ca-certificates=${cacert}/ca-bundle.crt";
14
14
15
15
meta = with stdenv.lib; {
16
16
platforms = platforms.linux;
+1
-1
pkgs/servers/mail/opensmtpd/default.nix
···
1
1
{ stdenv, fetchurl, autoconf, automake, libtool, bison
2
2
-
, libasr, libevent, zlib, openssl, db, pam
2
2
+
, libasr, libevent, zlib, openssl, db, pam, cacert
3
3
}:
4
4
5
5
stdenv.mkDerivation rec {