figsoda
6c80f90e03
xtrt: init at unstable-2021-02-17
2021-02-16 22:35:52 -05:00
volth
bc0d605cf1
treewide: fix double quoted strings in meta.description
...
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
2021-01-24 19:56:59 +07:00
zowoq
31f5dd3f36
treewide: editorconfig fixes
...
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
Ben Siraphob
d6aeae8f90
pkgs/tools: pkgconfig -> pkg-config (2)
2021-01-17 23:27:27 +07:00
Ben Siraphob
76f93cc731
pkgs/tools: pkgconfig -> pkg-config
2021-01-16 23:49:59 -08:00
Ben Siraphob
8c5d37129f
pkgs/tools: stdenv.lib -> lib
2021-01-15 17:12:36 +07:00
ajs124
0004c16701
p7zip: 17.01 -> 17.03
2021-01-14 02:58:41 +01:00
Profpatsch
4a7f99d55d
treewide: with stdenv.lib; in meta -> with lib;
...
Part of: https://github.com/NixOS/nixpkgs/issues/108938
meta = with stdenv.lib;
is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.
This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.
The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Ben Siraphob
3ae5e6ce03
treewide: remove enableParallelBuilding = true if using cmake
2021-01-03 18:37:40 +07:00
Lucas Ransan
7fd60b3c97
p7zip: fix build on gcc10
2020-12-28 08:43:32 +01:00
Sandro
17345770a7
Merge pull request #101788 from tex/tex/xarchiver
...
xarchiver: fix running
2020-12-11 08:46:27 +01:00
Gabriel Ebner
02362007aa
pax: init at 20201030
2020-12-03 18:03:30 +01:00
Graham Christensen
bc49a0815a
utillinux: rename to util-linux
2020-11-24 12:42:06 -05:00
Ryan Mulligan
28ee64cd0d
Merge pull request #86310 from marius851000/ctrtool
...
ctrtool: 0.16 -> 0.7 and fix cross compiling
2020-11-23 20:39:25 -08:00
midchildan
302cbf171c
arc_unpacker: init at unstable-2019-01-28
2020-11-14 18:07:03 +09:00
freezeboy
209fbcb121
unarj: remove (broken since 2016, insecure since 2015)
2020-11-02 03:10:24 +01:00
Milan Svoboda
c4853561d3
fix xarchiver
2020-10-29 18:58:12 +01:00
Lassulus
8d01f0d48c
Merge pull request #89249 from david-sawatzke/maxcso-init
...
maxcso: init at 1.12.0
2020-08-22 16:28:53 +02:00
R. RyanTM
028853c3ef
innoextract: 1.8 -> 1.9
2020-08-21 20:50:42 -07:00
Daniël de Kok
fdc7e050b0
Merge pull request #95841 from prusnak/bomutils
...
bomutils: init at 0.2
2020-08-21 07:48:55 +02:00
Pavol Rusnak
96b6e5bc12
bomutils: init at 0.2
2020-08-20 20:45:45 +02:00
Matthew Bauer
e57df5816d
undmg: use file name instead of pipe
...
There’s some issue in really big files with pipes that doesn’t occur
in filename decompression.
2020-08-19 19:35:29 -05:00
Matthew Bauer
4694b671b1
undmg: 1.0.5 -> 1.1.0
2020-08-19 19:35:14 -05:00
Frederik Rietdijk
50c060d13d
Merge master into staging-next
2020-08-01 19:37:20 +02:00
Matthew Bauer
d0677e6d45
treewide: add warning comment to “boot” packages
...
This adds a warning to the top of each “boot” package that reads:
Note: this package is used for bootstrapping fetchurl, and thus cannot
use fetchpatch! All mutable patches (generated by GitHub or cgit) that
are needed here should be included directly in Nixpkgs as files.
This makes it clear to maintainer that they may need to treat this
package a little differently than others. Importantly, we can’t use
fetchpatch here due to using <nix/fetchurl.nix>. To avoid having stale
hashes, we need to include patches that are subject to changing
overtime (for instance, gitweb’s patches contain a version number at
the bottom).
2020-07-31 08:56:53 +02:00
Matthew Bauer
ec80ae2550
undmg: 1.0.3 -> 1.0.5
2020-07-28 16:42:35 -05:00
Matías Lang
410dbaa077
p7zip: fix build when enableUnfree is true
...
`chmod +x install.sh` was only being executed when enableUnfree was
false. Therefore, building p7zip with enableUnfree set to true would fail
because install.sh was not an executable file.
2020-07-18 17:40:14 -03:00
David Sawatzke
d552a13571
maxcso: init at 1.12.0
2020-06-28 20:58:39 +02:00
Patrick Hilhorst
f7e390e6d4
treewide: fix redirected urls (run 3)
...
Related:
- 9fc5e7e473
- 593e11fd94
- 508ae42a0f
Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).
Here's the new script I used:
```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
| sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
R. RyanTM
2c58c24ef8
wimlib: 1.13.1 -> 1.13.2
2020-09-06 18:50:08 +02:00
Bart Brouns
955701709f
p7zip: switch to maintained fork
...
This the fork that true-upstream seems to prefer, see:
https://www.7-zip.org/links.html
2020-06-11 17:16:23 +02:00
ajs124
27e5a3f6c3
unar: fix build with new gnustep-base
...
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230627 for reference
2020-05-22 21:01:46 +02:00
Martin Weinelt
e24f5eab66
treewide: add CVE identifiers to patches
...
This allows tools like broken.sh to correctly identify the patched
status.
2020-05-06 23:18:09 +02:00
marius david
09852dfc4c
ctrtool: 0.16 -> 0.7 and fix cross compiling
2020-05-04 12:00:33 +02:00
Peter Hoeg
5fda26c3d0
Merge pull request #86628 from peterhoeg/f/unar
...
unar: 1.10.1 -> 1.10.7
2020-05-03 20:51:29 +08:00
Peter Hoeg
991c4d48db
unar: 1.10.1 -> 1.10.7
2020-05-03 12:45:08 +08:00
Keshav Kini
70b4e26403
afio: package has moved to GitHub
...
The old homepage and src URLs no longer exist. The author of the package
confirms on GitHub that GitHub is now the official homepage (see
kholtman/afio#12 ).
2020-05-02 13:39:19 -07:00
Daniel Frank
aa80b4780d
p7zip: mark as insecure
2020-05-01 14:26:21 +02:00
Daniel Frank
dd16c3944c
p7zip: fix two CVEs
2020-05-01 14:26:18 +02:00
adisbladis
955e235da3
p7zip: Make unfree features (rar support) optional
2020-04-22 16:06:50 +01:00
Emily
95f82e2a45
p7zip: remove non-free RAR support
...
7-Zip's RAR implementation is built on the non-free UnRAR source code;
DOC/License.txt says:
Licenses for files are:
1) CPP/7zip/Compress/Rar* files: GNU LGPL + unRAR restriction
2) All other files: GNU LGPL
The GNU LGPL + unRAR restriction means that you must follow both
GNU LGPL rules and unRAR restriction rules.
...
unRAR restriction
-----------------
The decompression engine for RAR archives was developed using source
code of unRAR program.
All copyrights to original unRAR code are owned by Alexander Roshal.
The license for original unRAR code has the following restriction:
The unRAR sources cannot be used to re-create the RAR compression algorithm,
which is proprietary. Distribution of modified unRAR sources in separate form
or as a part of other software is permitted, provided that it is clearly
stated in the documentation and source comments that the code may
not be used to develop a RAR (WinRAR) compatible archiver.
The unrar licensing is [infamously restrictive and non-free][fedora];
it's inappropriate for us to keep the RAR support while labelling the
package as free software (and indeed there's a commented-out line
pointing out that the current `meta.license` is false). Unfortunately,
the 7-Zip upstream seems uninterested in replacing the code with a
freely-licensed alternative (see [7-Zip ticket #1229 ][7zip]).
[fedora]: https://fedoraproject.org/wiki/Licensing:Unrar
[7zip]: https://sourceforge.net/p/sevenzip/feature-requests/1229/
An alternative solution would be to mark the p7zip package as non-free
instead; I decided not to because its other functionality (especially
`.7z` support) is freely-licensed and useful, and there are free
software alternatives for extracting RAR files (e.g. in nixpkgs there's
`archiver`, which is written in a memory-safe language, and `unar`,
which at least doesn't have two patches for CVEs that haven't been
addressed upstream...).
I checked that `7z(1)` fails gracefully on `.rar` files now:
emily@renko ~/tmp> curl -L -O https://www.philippwinterberg.com/download/example.rar
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5715k 100 5715k 0 0 6716k 0 --:--:-- --:--:-- --:--:-- 6716k
emily@renko ~/tmp> 7z x example.rar
7-Zip [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=en_CA.UTF-8,Utf16=on,HugeFiles=on,64 bits,8 CPUs x64)
Scanning the drive for archives:
1 file, 5853119 bytes (5716 KiB)
Extracting archive: example.rar
ERROR: example.rar
Can not open the file as archive
Can't open as archive: 1
Files: 0
Size: 0
Compressed: 0
2020-04-22 15:01:48 +00:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
R. RyanTM
233165ad0f
unrar: 5.9.1 -> 5.9.2
2020-04-07 21:36:22 +00:00
Vladimír Čunát
48a997cd76
Merge #66528 : glibc: 2.27 -> 2.30 (into staging)
...
Includes update of stdenv bootstap tools (for three main platforms)
and many package fixes with new glibc.
2020-02-05 13:41:09 +01:00
R. RyanTM
a91faae4a6
unrar: 5.8.5 -> 5.9.1
2020-02-04 19:51:34 +00:00
Maximilian Bosch
6b0cd9ad47
Merge branch 'staging' into glibc230
...
Conflicts:
pkgs/applications/misc/vit/default.nix
2020-01-28 14:54:51 +01:00
Silvan Mosberger
80a2740991
Merge pull request #78265 from Synthetica9/https-homepages
...
treewide: fix redirected urls
2020-01-27 15:00:53 +01:00
Michael Weiss
983f39cdab
unrar: Install all C++ header files into the "dev" output
...
This is e.g. required for the rar2fs build [0], which needs at least
version.hpp, rar.hpp, dllext.hpp, dll.hpp, and headers5.hpp.
At least Gentoo does this as well [1] but most other distributions only
install dll.hpp or no header files at all.
[0]: https://github.com/NixOS/nixpkgs/pull/78189
[1]: https://gitweb.gentoo.org/repo/gentoo.git/tree/app-arch/unrar/unrar-5.8.5.ebuild
2020-01-23 21:16:38 +01:00
Patrick Hilhorst
593e11fd94
treewide: fix redirected urls
...
According to https://repology.org/repository/nix_unstable/problems , we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.
The following script was used to make these updates:
```
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq '.[] | .problem' -r \
| rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
| sort | uniq > script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Luka Blaskovic
89590eb7bf
sharutils: fix build with glibc>=2.28
2020-01-14 08:26:59 +00:00
Robin Gloster
2157dcd141
treewide: installFlags is a list
2019-12-30 13:22:43 +01:00
Merijn Broeren
133103d709
treewide: replace make/build/configure/patchFlags with nix lists
2019-12-30 12:58:11 +01:00
Robin Gloster
76b774e89a
zip: *Flags are lists
2019-12-30 11:13:42 +01:00
Robin Gloster
e49f0d4985
unzip: *Flags are lists
2019-12-30 11:13:42 +01:00
Nathan
b0caf68bff
maintainer-list.nix: remove ndowens
2019-12-26 16:47:41 -05:00
R. RyanTM
cb90c9da24
unrar: 5.8.4 -> 5.8.5
2019-12-24 13:51:50 -08:00
R. RyanTM
a1937011b2
unrar: 5.8.3 -> 5.8.4
2019-11-29 22:32:18 +01:00
Frederik Rietdijk
be7125dde7
Merge master into staging-next
2019-11-16 11:45:07 +01:00
c0bw3b
9367367dfd
Treewide: fix URL permanent redirects
...
Permanent redirects on homepages and/or source URLs
as reported by Repology
2019-11-16 01:41:23 +01:00
Lancelot SIX
fe758f5fa3
cpio: 2.12 -> 2.13
...
See https://lists.gnu.org/archive/html/info-gnu/2019-11/msg00002.html
for release information.
Fixes CVE-2019-14866
2019-11-12 14:46:08 +01:00
Vladimír Čunát
802c81efa4
Merge #71401 : unzip: CVE-2019-13232 (into staging)
2019-11-09 15:29:58 +01:00
R. RyanTM
a6294b53b7
unrar: 5.8.2 -> 5.8.3
2019-11-03 10:02:50 +01:00
R. RyanTM
b78db667d2
unrar: 5.8.1 -> 5.8.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unrar/versions
2019-10-24 08:56:18 -07:00
Doron Behar
a7077637f9
snzip: init at 1.0.4
2019-10-21 16:10:47 +02:00
Thorsten Weber
4d33b41d3d
unzip: CVE-2019-13232
2019-10-20 21:03:49 +02:00
Jan Tojnar
b3fcd9375d
Merge branch 'master' into staging-next
2019-10-03 01:47:08 +02:00
R. RyanTM
d33e497b1b
unrar: 5.7.5 -> 5.8.1
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unrar/versions
2019-10-02 23:52:53 +02:00
Frederik Rietdijk
503081fa5b
Merge staging into staging-next
2019-09-29 11:05:22 +02:00
R. RyanTM
5c5dfc3727
innoextract: 1.7 -> 1.8
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/innoextract/versions
2019-09-26 15:27:40 -07:00
worldofpeace
b0c2aea20b
treewide: drop adding hicolor-icon-theme where possible
...
This was either for the setup-hook to remove caches or added
even though the respective icon theme propagated it.
2019-09-18 22:47:26 +02:00
volth
7b8fb5c06c
treewide: remove redundant quotes
2019-09-08 23:38:31 +00:00
Jan Tojnar
cdf426488b
Merge branch 'master' into staging-next
...
Fixed trivial conflicts caused by removing rec.
2019-09-06 03:20:09 +02:00
Jan Tojnar
72e7d569a7
tree-wide: s/GTK+/GTK/g
...
GTK was renamed.
2019-09-06 02:54:53 +02:00
volth
08f68313a4
treewide: remove redundant rec
2019-08-28 11:07:32 +00:00
volth
c814d72b51
treewide: name -> pname
2019-08-17 10:54:38 +00:00
volth
46420bbaa3
treewide: name -> pname (easy cases) ( #66585 )
...
treewide replacement of
stdenv.mkDerivation rec {
name = "*-${version}";
version = "*";
to pname
2019-08-15 13:41:18 +01:00
marius851000
4b594c3d8f
ctrtool: 0.15 -> 0.16
2019-08-08 17:23:14 +02:00
adisbladis
eaafd840bf
Revert "unzip: CVE-2019-13232"
...
This reverts commit 0238946872
.
This patch broke a number of legitimate zips in the wild, including but
not limited to most luarocks and a number of gradle-produced JARs.
2019-07-25 22:07:06 +01:00
Marek Mahut
0238946872
unzip: CVE-2019-13232
2019-07-17 10:15:08 +02:00
Jonathan Ringer
841893119d
zpaq: fix version and pull from github
2019-07-11 09:48:39 +02:00
worldofpeace
cab7c6cbd9
treewide: use dontConfigure
2019-07-01 04:23:51 -04:00
Profpatsch
7251830bf1
unp: remove unfree unrar from the default backend list
...
`unrar` is unfree, meaning `unp` cannot be built by default if `unrar`
is in its dependencies.
A simple
env NIXPKGS_ALLOW_UNFREE=1 nix-shell -p unrar
will make `unp` work with .rar files.
2019-06-24 16:18:23 +02:00
Profpatsch
7bc2aaff0e
unp: improve file copying & fix manpage
2019-06-24 16:18:23 +02:00
Will Dietz
acb3ace5c9
xarchiver: 0.5.4.12 -> 0.5.4.14
...
Changelog seems only at the level of 5.4.x:
https://github.com/ib/xarchiver/blob/0.5.4.14/ChangeLog
Commits from 0.5.4.12 to 0.5.4.14:
https://github.com/ib/xarchiver/compare/0.5.4.12...0.5.4.14
2019-05-29 02:50:30 -05:00
Matthew Bauer
b73d7705cc
Merge pull request #62120 from marius851000/ndstool
...
ndstool: init at 2.1.2
2019-05-27 21:52:52 -04:00
marius851000
1ac6fa55a3
ndstool: init at 2.1.2
2019-05-27 17:03:58 +02:00
Andreas Rammhold
2b8b71ea66
Merge pull request #62016 from r-ryantm/auto-update/wimlib
...
wimlib: 1.13.0 -> 1.13.1
2019-05-24 20:09:11 +02:00
R. RyanTM
1cb1a1523f
wimlib: 1.13.0 -> 1.13.1
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/wimlib/versions
2019-05-24 10:15:34 -07:00
marius851000
006d4b0c54
ctrtool: init at 0.15
2019-05-14 11:02:35 +02:00
Frederik Rietdijk
0196d8f11c
Merge master into staging-next
2019-05-07 09:00:06 +02:00
Michael Raskin
7770495cd7
Merge pull request #59148 from volth/gcc.arch.v3
...
compilation for particular x86_64 architecture
2019-05-05 19:12:12 +00:00
Frederik Rietdijk
0f10b72b5f
Merge master into staging-next
2019-05-03 19:56:31 +02:00
Renaud
7c506060fd
Merge pull request #60817 from r-ryantm/auto-update/unrar
...
unrar: 5.7.4 -> 5.7.5
2019-05-03 14:00:22 +02:00
R. RyanTM
7893a6e2c0
unrar: 5.7.4 -> 5.7.5
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unrar/versions
2019-05-02 16:24:30 -07:00
volth
5ad79dc4bb
compilation for particular x86_64 architecture
2019-04-30 14:28:04 +00:00
wucke13
da284dbd46
s-tar: 1.5.3 -> 1.6
2019-04-30 11:18:01 +02:00
Matthew Bauer
74c784a79c
treewide: make -Wno-error flags clang-only
...
In 724e833ea2
, I was a little too aggressive in enabling these flags.
Many don’t work in gcc, and we should probably avoid settings them
widely. This makes those flags optional on isclang
2019-04-29 21:34:24 -04:00
Matthew Bauer
87944c3125
Merge pull request #56744 from matthewbauer/macos-10-12
...
Update macOS to 10.12
2019-04-26 22:20:03 -04:00
Matthew Bauer
724e833ea2
treewide: disable -Werror for llvm 7
...
Some of these have errors on newest llvm. It’s easiest to just add
-Wno-error in these cases.
2019-04-26 21:55:04 -04:00
Matthew Bauer
27498cd2d1
gnutar: disable CFLocaleCopyPreferredLanguages
...
These pull in the system CoreFoundation framework for some reason. In
the future, we should figure out a way for it to get these features
from the pure CoreFoundation (they do have the symbol). But right now
this is an issue with sandboxing in gnutar. Fixes #56591 .
2019-04-26 21:54:52 -04:00
Daniel Schaefer
bac4d95aa2
treewide: Change URLs to HTTPS
...
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00
Frederik Rietdijk
bae32a9f5c
Merge staging-next into staging
2019-04-16 18:54:15 +02:00
R. RyanTM
2a09d0d499
gnutar: 1.31 -> 1.32
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gnutar/versions
2019-04-16 18:51:47 +02:00
rnhmjoj
5ea4160b33
treewide: fixup bcf54ce
...
fix the executable bit for scripts installed with substituteAll
and some remaining shebangs.
2019-04-12 09:09:22 +02:00
Frederik Rietdijk
4a125f6b20
Merge master into staging-next
2019-04-07 08:33:41 +02:00
Will Dietz
ff8992a94b
unrar: 5.7.3 -> 5.7.4
2019-04-05 15:29:32 -05:00
Vladimír Čunát
8d502fd425
Merge branch 'staging-next' into staging
2019-03-10 08:05:27 +01:00
Matthew Bauer
8a08d7e7cc
Merge pull request #56031 from matthewbauer/priorities
...
Add some more priorities
2019-03-09 18:02:55 -05:00
Pascal Wittmann
2ec1b90a60
cabextract: 1.9 -> 1.9.1
2019-03-05 18:52:41 +01:00
Will Dietz
c61bb14eb4
unrar: 5.5.8 -> 5.7.3 ( #56657 )
2019-03-04 13:20:06 +01:00
Ryan Mulligan
66cead5863
Merge pull request #54727 from phi-gamma/afio-2.5.2
...
afio: update 2.5.1 -> 2.5.2
2019-02-24 14:55:32 -08:00
Matthew Bauer
83254ec1af
gnutar: set low priority
2019-02-18 21:11:16 -05:00
Pierre Bourdon
705167a5dc
unzip: patch CVE-2018-18384
...
Patch from https://sourceforge.net/p/infozip/bugs/53/
2019-02-17 05:55:30 +01:00
Philipp Gesang
b0c26257f0
afio: update 2.5.1 -> 2.5.2
2019-01-27 21:51:12 +01:00
Frederik Rietdijk
d531da6f8a
Merge pull request #54094 from rnhmjoj/shell
...
treewide: use ${stdenv.shell} instead of /bin/sh where possible
2019-01-19 14:15:51 +01:00
rnhmjoj
bcf54ce5bb
treewide: use ${stdenv.shell} instead of /bin/sh where possible
2019-01-16 20:37:15 +01:00
R. RyanTM
0008aa73eb
gnutar: 1.30 -> 1.31
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gnutar/versions
2019-01-06 10:57:29 -08:00
Elis Hirwing
50d8250195
fsarchiver: init at 0.8.5
...
Filesystem archiver: http://www.fsarchiver.org/
2018-12-24 09:42:10 +01:00
R. RyanTM
e6afc78965
wimlib: 1.12.0 -> 1.13.0
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/wimlib/versions
2018-12-13 23:09:21 -08:00
c0bw3b
0498ccd076
Treewide: use HTTPS on GNU domains
...
HTTP -> HTTPS for :
- http://gnu.org/
- http://www.gnu.org/
- http://elpa.gnu.org/
- http://lists.gnu.org/
- http://gcc.gnu.org/
- http://ftp.gnu.org/ (except in fetchurl mirrors)
- http://bugs.gnu.org/
2018-12-02 15:51:59 +01:00
c0bw3b
a04a512f34
Treewide: use HTTPS on NonGNU domains
2018-12-02 15:21:04 +01:00
Jörg Thalheim
811a081b2f
Merge pull request #50197 from r-ryantm/auto-update/cabextract
...
cabextract: 1.7 -> 1.9
2018-11-10 22:11:36 +00:00
R. RyanTM
13208cbf46
cabextract: 1.7 -> 1.9
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cabextract/versions
2018-11-10 09:21:36 -08:00
R. RyanTM
93a90a3416
unshield: 1.4.2 -> 1.4.3
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unshield/versions
2018-11-08 12:38:39 -08:00
volth
fbeeed1c5c
p7zip: fix cross-compilation
2018-10-12 12:36:48 +00:00
John Ericson
0828e2d8c3
treewide: Remove usage of remaining redundant platform compatability stuff
...
Want to get this out of here for 18.09, so it can be deprecated
thereafter.
2018-08-30 17:20:32 -04:00
John Ericson
2c2f1e37d4
reewide: Purge all uses stdenv.system
and top-level system
...
It is deprecated and will be removed after 18.09.
2018-08-30 17:20:32 -04:00
xeji
4f9c7ea1df
Merge pull request #45077 from markuskowa/licenses-c
...
Add license meta tags
2018-08-16 12:34:56 +02:00
Benjamin Hipple
0c119682ce
p7zip: vendor debian patches
...
A few months ago I moved these patches to the new debian alsa instance [1], but
it looks like their `sha256`s on the tag at the remote have changed again.
It doesn't appear that debian's source remote is stable in the way we need it to
be; let's just vendor the patches to avoid future issues.
[1] https://github.com/NixOS/nixpkgs/pull/41769
2018-08-16 01:52:30 +00:00
Markus Kowalewski
47e8f3b137
cromfs: add license
2018-08-15 20:53:08 +02:00
Markus Kowalewski
8c6dc9def7
cpio: add license
2018-08-15 20:53:07 +02:00
Pascal Wittmann
af8cd3c74e
Merge branch 'master' into add-missing-licenses
...
Conflicts:
pkgs/applications/version-management/subversion/default.nix
2018-08-09 13:10:27 +02:00
Pascal Wittmann
76ce4751d0
p7zip: add license
...
see issue #43716
2018-08-09 12:41:06 +02:00
Markus Kowalewski
0aed6cc572
zip: add license
2018-08-09 11:44:29 +02:00
Tim Steinbach
76a713bd29
sharutils: Patch CVE-2018-1000097
2018-08-05 14:42:15 -04:00
Pascal Wittmann
3af85571bf
cabextract: 1.6 -> 1.7
2018-08-02 12:48:35 +02:00
John Ericson
0859696d06
sharutils: Remove crossAttrs
...
The patch is no longer needed, at least on aarch64-linux
2018-07-24 18:36:59 -04:00
Pascal Wittmann
2cf5305cfb
atool: add license
...
see issue #43716
2018-07-22 17:27:11 +02:00
volth
52f53c69ce
pkgs/*: remove unreferenced function arguments
2018-07-21 02:48:04 +00:00
Izorkin
f7d6744cf8
dar: 2.5.14 -> 2.5.15
2018-07-12 17:41:41 +03:00
Silvan Mosberger
57bccb3cb8
treewide: http -> https sources ( #42676 )
...
* treewide: http -> https sources
This updates the source urls of all top-level packages from http to
https where possible.
* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00
R. RyanTM
6ccecc8538
innoextract: 1.6 -> 1.7
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/innoextract/versions .
These checks were done:
- built on NixOS
- /nix/store/xwz5h6cg32nl698gqa8xajimdl5dy3pw-innoextract-1.7/bin/innoextract passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 1.7 with grep in /nix/store/xwz5h6cg32nl698gqa8xajimdl5dy3pw-innoextract-1.7
- directory tree listing: https://gist.github.com/9339747cc50492bc9ca2c38a4971b3c6
- du listing: https://gist.github.com/d275e3e2902e51ec26277a19a8479ad9
2018-06-14 05:31:38 -07:00
Benjamin Hipple
e20abf829a
p7zip: fix src URL for debian gitlab move ( #41769 )
...
Another broken URL related to: https://github.com/NixOS/nixpkgs/issues/39927
Note that the patch file has legitimately changed, because ~4 months ago Debian
replaced their CVE security fix with a newer version that fixes some additional
bugs: d6fd3b3734
2018-06-09 23:08:59 +00:00
wucke13
347cc5015c
s-tar: init at 1.5.3 ( #40771 )
2018-05-28 11:56:35 +02:00
Jan Malakhovski
7438083a4d
tree-wide: disable doCheck
and doInstallCheck
where it fails (the trivial part)
2018-04-25 04:18:46 +00:00
Peter Hoeg
99483fbc44
innoextract: support extraction of multi-file archives
2018-04-09 15:14:27 +08:00
Peter Hoeg
0e23e81cc0
unar: minor cleanups
2018-04-09 15:14:27 +08:00
Matthew Justin Bauer
c52e835807
Merge pull request #36524 from timor/unp
...
unp: init at 2.0-pre7
2018-03-19 03:55:33 -05:00
Daiderd Jordan
c5d531ddfb
xarchiver: fix darwion build
...
/cc ZHF #36454
2018-03-12 20:33:26 +01:00
Michael Raskin
1e4358e5ed
Merge pull request #35122 from Izorkin/dar-2.5.14
...
dar: 2.5.9 -> 2.5.14
2018-03-12 10:54:05 +00:00
Izorkin
3bca698db3
dar 2.5.14: fix build on Darwin
2018-03-12 12:39:47 +03:00
timor
6d7b419706
unp: init at 2.0-pre7
2018-03-08 14:34:42 +01:00
Ricardo Ardissone
bbf430700a
xarchiver: depend on hicolor_icon_theme
2018-02-28 16:56:27 -03:00
Izorkin
242e77271b
dar: 2.5.9 -> 2.5.14
2018-02-18 18:44:56 +03:00
Dan Peebles
dfd300c81d
treewide: s/pkgs.fedoraproject.org/src.fedoraproject.org/
...
Upstream killed the pkgs server but src continues to serve up the exact
same content, so we can just point there and all hashes should be unchanged.
2018-02-08 16:38:08 -05:00
Vladimír Čunát
c9171e5a4c
Merge branch 'master' into staging
...
Hydra: ?compare=1430035
2018-01-30 19:51:33 +01:00
Franz Pletz
eaaca14c30
p7zip: add patch to fix CVE-2017-17969
2018-01-29 10:54:45 +01:00
Ben Gamari
a4179bf45f
zip: Enable cross-compilation
2018-01-22 20:25:44 -05:00
Will Dietz
a5e93fc0d6
unrar: Fix for cross
...
Just read tool variables from environment,
don't try to set them at all.
2018-01-22 17:24:53 -06:00
Tuomas Tynkkynen
67c73b4e64
Merge commit '2e56ba' from staging into master
2018-01-17 12:50:46 +02:00
Tobias Geerinckx-Rice
0f84673f3d
Remove nckx as a maintainer for all packages
...
Goodbye, and thanks for all the Nix...
2018-01-16 23:00:49 +01:00
Will Dietz
2b230efb7f
sharutils: don't hardcode AR to 'ar' (doesn't exist on cross)
...
Instead, let the default value of $AR indicate what should be used.
(which will be something like `armv6l-unknown-linux-gnueabihf-ar`)
2018-01-06 14:44:36 -06:00
Samuel Dionne-Riel
7b97c8c0c8
treewide: homepage+src updates (found by repology, #33263 )
2018-01-05 20:42:46 +01:00
Dan Peebles
bba5d625fb
gnutar: 1.29 -> 1.30
2017-12-18 11:49:18 -05:00
Joerg Thalheim
32ce470720
wimlib: nitpicks
2017-11-21 20:40:52 +00:00
Andreas Rammhold
40180335a9
wimlib: init at 1.12.0
2017-11-21 20:43:12 +01:00
Graham Christensen
753f7be38d
sharutils: simplify substituteInPlace syntax to be Nix 1.11.8 compatible
2017-11-14 19:07:30 -05:00
Dan Peebles
d61c612768
Fix sharutils tests in darwin sandbox
2017-11-08 22:02:01 -05:00
mimadrid
8ee4a3648f
xarchiver: 0.5.4.7 -> 0.5.4.12
...
- Fix github url
- Add libxslt dependency
- Gtk2 -> Gtk3
2017-11-03 14:25:01 +01:00
mimadrid
94fa59228a
unrar: 5.5.7 -> 5.5.8
2017-10-12 21:57:12 +03:00
Orivej Desh
fda26c8476
Merge branch 'master' into staging
...
* master: (271 commits)
pysmbc: clarify license
pysmbc: fix license
bazel: 0.5.4 -> 0.6.0 (#29990 )
googler: init at 3.3
go: declare support for aarch64
firefox-beta-bin: 56.0b5 -> 57.0b4
spotify: 1.0.64.401.g9d720389-21 -> 1.0.64.407.g9bd02c2d-26
gogs: 0.11.19 -> 0.11.29
grafana: 4.5.1 -> 4.5.2
mopidy-iris: 3.4.1 -> 3.4.9
nextcloud: 12.0.2 -> 12.0.3
haskell-json-autotype: jailbreak to fix build within LTS 9.x
kore: fix up
kore: init at 2.0.0
glusterfs service: fix issues with useRpcbind
tig: 2.2.2 -> 2.3.0
haskell-hspec-core: enable test suite again
hackage-packages.nix: automatic Haskell package set update
librsvg: fix thumbnailer path
awscli: 1.11.108 -> 1.11.162
...
2017-10-02 00:22:12 +00:00
Franz Pletz
58f15c1f95
unrar: 5.5.5 -> 5.5.7 for multiple CVEs
...
Fixes CVE-2012-6706, CVE-2017-12940, CVE-2017-12941, CVE-2017-12942.
2017-09-28 14:52:37 +02:00
John Ericson
531e4b80c9
misc pkgs: Basic sed to get fix pkgconfig
and autoreconfHook
buildInputs
...
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00
Frederik Rietdijk
13bbaee21d
Merge pull request #27881 from mimadrid/fix/http-https
...
Update homepage attributes: http -> https
2017-08-13 21:53:20 +02:00
John Ericson
a8bd415fa0
unzip: cc-wrapper has been fixed so don't need to be so clever
2017-08-07 03:05:51 -04:00
mimadrid
09e0cc7cc7
Update homepage attributes: http -> https
...
Homepage link "http://.../ " is a permanent redirect to "https://.../ " and should be updated
https://repology.org/repository/nix_stable/problems
2017-08-03 11:56:15 +02:00
Silvan Mosberger
f5fa5fa4d6
pkgs: refactor needless quoting of homepage meta attribute ( #27809 )
...
* pkgs: refactor needless quoting of homepage meta attribute
A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.
* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit
* Fixed some instances
2017-08-01 22:03:30 +02:00
Karn Kallio
bd129c2b3e
unzipNLS : Fix build by removing patch fuzz.
2017-07-09 10:44:48 +02:00
Vladimír Čunát
d1a89ae9d7
Merge branch 'master' into staging
2017-07-03 09:48:58 +02:00
Vladimír Čunát
6cad339a0e
p7zip: add commit ID to the patch
...
We still do mirror the patch (I think), as `nix-build -Q -A p7zip.patches`
downloaded it on my machine. I verified that only the diff headers differ;
it's still better to have another working download and Fedora's URLs are
less likely to disappear than Debian's.
/cc #27075 .
2017-07-03 08:19:20 +02:00
es_github
674e46d643
p7zip: Update CVE-2016-9296 patch URL.
...
The debian source for this patch file has gone away, rendering this derivation
unbuildable from scratch.
This change updates the URL to a src.fedoraproject.org location that is still
serving a p7zip patch. This file is not the same bytewise, so I'm also updating
the hash; I didn't manage to find a location still serving a file with the
original hash, and my best guess is that this one is functionally equivalent.
2017-07-03 02:58:38 +01:00
John Ericson
95c8277701
misc pkgs: Remove unneeded *Platform == *Platform comparisons
...
PR #26007 used these to avoid causing a mass rebuild. Now that we know
things work, we do that to clean up.
2017-06-30 10:09:31 -04:00
John Ericson
87fab3d6a5
Merge some merged cross-compilation PRs into into staging
2017-06-23 20:24:27 -04:00
John Ericson
afd2bdbad2
Merge pull request #26007 from obsidiansystems/cc-wrapper-prefix
...
Get rid of gcc-cross-wrapper
2017-06-23 11:22:34 -04:00
John Ericson
bef622a4e8
unzip: Fix for cross
2017-06-22 17:53:54 -04:00
Franz Pletz
cfdb9769ce
unrar: 5.4.5 -> 5.5.5 (security)
...
Fixes arbitrary memory write.
See https://bugs.chromium.org/p/project-zero/issues/detail?id=1286
2017-06-21 14:38:26 +02:00
John Ericson
fedcda6cda
zpaqd: Modernize derivation
...
- Simplified platform-specific options
- Almost ready for cross-compilation
2017-05-22 18:52:50 -04:00
Dan Peebles
9ae3f39e8e
p7zip: fix purity on Darwin
...
This should (I hope) get Hydra to build it. Fixes #24714
2017-04-07 16:51:23 -04:00
ndowens
d455cdd34b
sharutils: 4.11.1 -> 4.15.2 ( #24305 )
2017-04-01 11:29:55 +02:00
Vladimír Čunát
96d41e393d
treewide: purge maintainers.urkud
...
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00
ndowens
1e6fd6f901
dar: 2.5.3 -> 2.5.9
2017-03-24 16:06:41 -05:00
ndowens
918a4e649d
unshield: 1.3 -> 1.4.2
2017-03-06 17:24:43 -05:00
ndowens
d12df18235
undmg: 1.0.2 -> 1.0.3
...
undmg: Readd setup-hook
2017-03-04 15:17:45 -06:00
Philipp Gesang
b4e9bcfc12
afio: init at 2.5.1
...
Signed-off-by: Philipp Gesang <phg@phi-gamma.net>
2017-02-17 15:29:03 +01:00
Nikolay Amiantov
1cb3831f1c
Merge pull request #21231 from abbradar/no-fmod
...
Update DOOM forks, remove top-level fmod
2016-12-18 00:29:46 +03:00
Nikolay Amiantov
0063c8acb4
p7zip: add setup hook
2016-12-17 15:33:12 +03:00
Graham Christensen
5cbb0f7fbf
unzip: patch for CVE-2014-9913 and CVE-2016-9844
2016-12-15 17:17:58 -05:00
Rob Vermaas
0a90a53441
Fix hash for p7zip patch (seems fetchurl hash was added, while fetch-patch function is used.
...
(cherry picked from commit 38b1bd9e729485d418f20c43c275c2856837f8cf)
2016-12-09 07:59:25 +00:00
Graham Christensen
0683c1a35c
p7zip: patch for CVE-2016-9296
2016-12-07 19:38:50 -05:00
Eelco Dolstra
459448727e
gnutar: Fix comment
2016-11-08 10:02:37 +01:00