Fritz Otlinghaus
cf97a0372f
gif-for-cli: init at unstable-2018-08-14
2018-12-29 18:57:18 +08:00
Domen Kožar
45f5453359
haskell packages: RSA test suite doesn't compile on GHC 8.6
2018-12-29 10:54:04 +00:00
wkpatrick
99552ca12a
synapse-bt 2018-06-04 -> 2018-10-17
2018-12-29 04:33:45 -05:00
worldofpeace
94164f0d04
Merge pull request #53017 from dtzWill/update/strace-4.26
...
strace: 4.25 -> 4.26
2018-12-28 22:45:47 -05:00
worldofpeace
dfc35f1203
strace: change licenses
...
"The test suite is now provided under the terms of
the GNU General Public License version 2 or later."
"All the rest of strace is now provided under the terms of
the GNU Lesser General Public License version 2.1 or later."
> 27739ebccc/NEWS (L4)
2018-12-28 22:27:32 -05:00
worldofpeace
bd98a3d770
pythonPackages.update-copyright: disable tests, add homepage
2018-12-28 19:31:33 -05:00
Will Dietz
4c1fd5b595
Merge pull request #52921 from LnL7/editline-redisplay
...
editline: add redisplay patch
2018-12-28 17:31:11 -06:00
Timo Kaufmann
95909d4fb6
Revert "sage: preload openblasCompat"
...
This reverts commit 4900bbee17
.
The issue that was supposed to fix is now fixed by lazy-loading rpy2 and
makign sure scipy is loaded before that.
That is not quite as nice, but preloading is now causing its own issues
with openblas 0.3.4:
https://github.com/xianyi/OpenBLAS/issues/1936
2018-12-28 23:06:05 +01:00
Timo Kaufmann
360eddd3a3
sage: remove outdated patch files
2018-12-28 23:06:05 +01:00
Timo Kaufmann
6f0f06ec89
sage: 8.5.rc1 -> 8.5
2018-12-28 23:06:05 +01:00
adisbladis
0ff4d0a516
fish: 2.7.1 -> 3.0.0
2018-12-28 21:23:24 +00:00
Will Dietz
2aaabb02bf
zstd: 1.3.7 -> 1.3.8
...
https://github.com/facebook/zstd/releases/tag/v1.3.8
2018-12-28 13:13:31 -06:00
Will Dietz
e529cdb3fb
strace: 4.25 -> 4.26
...
https://github.com/strace/strace/releases/tag/v4.26
2018-12-28 13:10:07 -06:00
Will Dietz
19894adb77
Merge pull request #52443 from dtzWill/fix/aom-version-and-shared
...
libaom: create shared libraries, fix version reported in aom.pc
2018-12-28 13:04:44 -06:00
Profpatsch
aebec73071
pythonPackages.update-copyright: init at 0.6.2
2018-12-28 19:45:53 +01:00
José Romildo Malaquias
958a669e83
qogir-theme: init at 2018-11-12 ( #52918 )
...
* qogir-theme: init at 2018-11-12
* qogir-theme: fix pname
Co-Authored-By: romildo <malaquias@gmail.com>
2018-12-28 13:07:06 -05:00
Jan Tojnar
a90974ab45
gnome3.gvfs: Add TLS support
...
GLib Gio’s GFile uses gvfs daemon for opening files over HTTP protocol.
To support HTTPS, we need to include glib-networking.
Closes: https://github.com/NixOS/nixpkgs/issues/52963
2018-12-28 17:40:28 +01:00
Anton-Latukha
0ad3f6e23d
libogg: add description & longDescription
2018-12-28 18:00:23 +02:00
Anton-Latukha
9ea4552bab
libmkv: add description & longDescription
2018-12-28 18:00:18 +02:00
Anton-Latukha
b86a583592
mp4v2: add maintainer
...
add
2018-12-28 17:58:53 +02:00
Anton-Latukha
cca5cd2e33
mp4v2: add description & longDescription
2018-12-28 17:58:47 +02:00
CrazedProgrammer
cc2573028b
urn: 0.7.1 -> 0.7.2
2018-12-28 16:39:13 +01:00
Joaquim Pedro França Simão
3e69bdcc94
picoLisp 16.12 -> 18.12
...
{ stdenv, fetchurl, jdk, makeWrapper }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "picoLisp-${version}";
version = "18.12";
src = fetchurl {
url = "https://www.software-lab.de/${name}.tgz ";
sha256 = "0hvgq2vc03bki528jqn95xmvv7mw8xx832spfczhxc16wwbrnrhk";
};
buildInputs = [makeWrapper] ++ optional stdenv.is64bit jdk;
patchPhase = ''
sed -i "s/which java/command -v java/g" mkAsm
${optionalString stdenv.isAarch32 ''
sed -i s/-m32//g Makefile
cat >>Makefile <<EOF
ext.o: ext.c
\$(CC) \$(CFLAGS) -fPIC -D_OS='"\$(OS)"' \$*.c
ht.o: ht.c
\$(CC) \$(CFLAGS) -fPIC -D_OS='"\$(OS)"' \$*.c
EOF
''}
'';
sourceRoot = ''picoLisp/src${optionalString stdenv.is64bit "64"}'';
installPhase = ''
cd ..
mkdir -p "$out/share/picolisp" "$out/lib" "$out/bin"
cp -r . "$out/share/picolisp/build-dir"
ln -s "$out/share/picolisp/build-dir" "$out/lib/picolisp"
ln -s "$out/lib/picolisp/bin/picolisp" "$out/bin/picolisp"
makeWrapper $out/bin/picolisp $out/bin/pil \
--add-flags "$out/lib/picolisp/lib.l" \
--add-flags "@lib/misc.l" \
--add-flags "@lib/btree.l" \
--add-flags "@lib/db.l" \
--add-flags "@lib/pilog.l"
mkdir -p "$out/share/emacs"
ln -s "$out/lib/picolisp/lib/el" "$out/share/emacs/site-lisp"
'';
meta = {
description = "A simple Lisp with an integrated database";
homepage = https://picolisp.com/ ;
license = licenses.mit;
platforms = platforms.all;
broken = stdenv.isDarwin; # times out
maintainers = with maintainers; [ raskin tohl ];
};
passthru = {
updateInfo = {
downloadPage = "http://www.software-lab.de/down.html ";
};
};
}
2018-12-28 11:30:57 -03:00
volth
4b1576a73f
[cpan2nix] perlPackages.HTMLFormFu: 2.06 -> 2.07
2018-12-28 14:22:24 +00:00
volth
a2acf9f432
[cpan2nix] perlPackages.CatalystPluginSession: 0.40 -> 0.41
2018-12-28 14:22:15 +00:00
volth
394d60ab63
[cpan2nix] perlPackages.CatalystRuntime: 5.90120 -> 5.90123
2018-12-28 14:21:53 +00:00
volth
ed8629820b
[cpan2nix] perlPackages.RTClientREST: 0.52 -> 0.56
2018-12-28 14:21:24 +00:00
volth
29721cf12d
[cpan2nix] perlPackages.TestWWWMechanize: 1.50 -> 1.52
2018-12-28 14:21:23 +00:00
volth
a5aa538926
[cpan2nix] perlPackages.WWWMechanize: 1.89 -> 1.90
2018-12-28 14:21:19 +00:00
volth
1139a335ec
[cpan2nix] perlPackages.ArrayFIFO: 0.10 -> 0.12
2018-12-28 14:21:15 +00:00
volth
2e0a0abc1e
[cpan2nix] perlPackages.LocaleTextDomainOO: 1.033 -> 1.035
2018-12-28 14:20:57 +00:00
volth
3642566dfc
[cpan2nix] perlPackages.DateTimeFormatNatural: 1.05 -> 1.06
2018-12-28 14:20:56 +00:00
volth
83176e0882
[cpan2nix] perlPackages.CPAN: 2.16 -> 2.22
...
dependencies:
perlPackages.CPANChecksums: init at 2.12
2018-12-28 14:20:55 +00:00
volth
a00600404f
[cpan2nix] perlPackages.CodeTidyAll: 0.71 -> 0.72
2018-12-28 14:20:52 +00:00
volth
01320bbba7
[cpan2nix] perlPackages.DateTimeCalendarJulian: 0.04 -> 0.100
2018-12-28 14:20:49 +00:00
volth
464b63c6b6
[cpan2nix] perlPackages.TestCleanNamespaces: 0.23 -> 0.24
2018-12-28 14:20:47 +00:00
volth
4f7ff8ec32
[cpan2nix] perlPackages.LocaleMOFile: 0.08 -> 0.09
2018-12-28 14:20:47 +00:00
volth
8f75d40f49
[cpan2nix] perlPackages.Appperlbrew: 0.84 -> 0.85
2018-12-28 14:20:42 +00:00
volth
8ce42743e4
[cpan2nix] perlPackages.DateTimeTimeZone: 2.20 -> 2.21
2018-12-28 14:20:41 +00:00
volth
d151eba7df
[cpan2nix] perlPackages.HTTPDAV: 0.48 -> 0.49
2018-12-28 14:20:21 +00:00
volth
29ced02617
[cpan2nix] perlPackages.AlienGMP: cleanup
2018-12-28 14:20:01 +00:00
volth
14e0469778
[cpan2nix] perlPackages.ArrayCompare: v3.0.1 -> v3.0.2
2018-12-28 14:19:55 +00:00
volth
f13dac715a
[cpan2nix] perlPackages.PPIxRegexp: 0.062 -> 0.063
2018-12-28 14:19:53 +00:00
volth
341b702658
[cpan2nix] perlPackages.AlienBuild: 1.48 -> 1.49
2018-12-28 14:19:50 +00:00
volth
1363c6cb2f
[cpan2nix] perlPackages.SoftwareLicense: 0.103013 -> 0.103014
2018-12-28 14:19:48 +00:00
volth
fa69e0449e
[cpan2nix] perlPackages.Specio: 0.42 -> 0.43
2018-12-28 14:19:43 +00:00
volth
36393c0994
[cpan2nix] perlPackages.ListAllUtils: 0.14 -> 0.15
2018-12-28 14:19:28 +00:00
volth
a63a76103c
[cpan2nix] perlPackages.FFICheckLib: 0.20 -> 0.23
2018-12-28 14:19:04 +00:00
volth
b3e531977c
[cpan2nix] perlPackages.CryptPKCS10: 1.9 -> 2.001
2018-12-28 14:19:03 +00:00
volth
acf4096663
[cpan2nix] perlPackages.Test2Suite: 0.000115 -> 0.000117
2018-12-28 14:19:00 +00:00