aszlig
7350c57140
beets: Add myself to maintainers.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-01-01 15:45:32 +01:00
Tobias Geerinckx-Rice
56692eec7c
Fix user-facing typos (mainly in descriptions)
2015-01-01 15:45:32 +01:00
aszlig
ab5e2b46ab
beets: Update to new upstream version 1.3.9.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-01-01 15:45:32 +01:00
aszlig
58cd4985fd
beets: Move into its own package directory.
...
The primary use of beets is not as a Python library and users usually
would expect to install it into the env using "nix-env -i beets" rather
than "nix-env -i pythonX.Y-beets".
Having beets in its own package directory also allows for better
customization, where we're going to implement attributes that can be
used to turn on/off various features and plugins.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-01-01 15:45:31 +01:00
Austin Seipp
e420d371d1
nmap: fix dependencies on makeWrapper/python
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-01-01 15:45:31 +01:00
Austin Seipp
39e03699fe
nixpkgs: afl-1.04b -> 1.06b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-01-01 15:45:31 +01:00
Austin Seipp
91f53545cc
nixpkgs: p0f 3.07b -> 3.08b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-01-01 15:45:31 +01:00
Austin Seipp
6c952fd9e6
nixpkgs: nmap 6.40 -> 6.47
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-01-01 15:45:31 +01:00
Matthew William Cox
2028c283cd
nixpkgs: unbound 1.4.22 -> 1.5.1
2015-01-01 15:45:31 +01:00
Eelco Dolstra
056ace5bca
ntp: Don't depend on openssl, don't install docs
2015-01-01 15:45:30 +01:00
Patrick Mahoney
06e523b7e8
Update skarnet.org software for 2.0 release.
...
New build system using configure script and GNU Make 4.0, and new
releases of the following using the new build system:
execline 2.0.0.0
s6 2.0.0.0
s6-dns 2.0.0.0
s6-linux-utils 2.0.0.0
s6-networking 2.0.0.0
s6-portable-utils 2.0.0.0
skalibs 2.0.0.0
2015-01-01 15:45:28 +01:00
Michael Raskin
fdb785f4d1
Merge pull request #5453 from pmahoney/skarnet-2.0
...
Update skarnet.org software for 2.0 release.
2015-01-01 16:14:17 +03:00
Michael Raskin
b4ea438f3d
fdm: 1.7 -> 1.8
2014-12-31 21:20:39 +03:00
Charles Strahan
df55381b65
ghcjs: restructure
2014-12-31 00:03:43 -05:00
Sebastián Bernardo Galkin
24abe2b2b3
Bumblebee config to enable multiple monitors
...
Added configurations to `bumblebee` package to easy multiple monitors on Optimus
machines.
The behaviour of the default `bumblebee` package hasn't change, so this change
is backwards compatible. Users who want to connect a monitor to their discrete
card should use the package `bumblebee_display` instead.
Also added new configuration option to nixos bumblebee module:
```
hardware.bumblebee.connectDisplay = true
```
will enable the new configuration, but the default is still false.
2014-12-30 19:17:42 -08:00
Charles Strahan
94dd4b9721
ruby: WIP
2014-12-30 21:05:00 -05:00
aszlig
880c985f27
Merge branch 'better-beets'.
...
Makes beets actually usable (and configurable) on Nix(OS), if you want
to use more plugins rather than just plain lookup of tracks based on
(fuzzy) string matching.
This also changes the derivation name from "python2.7-beets" to just
"beets".
* Commit summary:
beets: Check dependencies on activated plugins.
beets: Check plugin definitions against package.
beets: Use audiotools backend for replaygain.
beets: Allow to configure plugin dependencies.
beets: Switch to using fetchFromGitHub.
python: Add new package audiotools.
python: Add new package discogs_client.
python: Add pyacoustid and dependencies.
python/mutagen: Update to upstream version 1.27.
mp3gain: Fix output path bin directory.
beets: Add myself to maintainers.
beets: Update to new upstream version 1.3.9.
beets: Move into its own package directory.
2014-12-30 23:21:57 +01:00
aszlig
05f6061d1d
beets: Check dependencies on activated plugins.
...
Beets tries to load oll activated plugins on "beet config -e" (however
only on the second run, thus the dummy), so we just pass all activated
plugins into a generated config file and bail out on any errors.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 23:13:56 +01:00
aszlig
740da53c72
beets: Check plugin definitions against package.
...
The reason for doing this is in order to not forget about possible
dependencies in new upstream releases, so if upstream is introducing a
new plugin where we're lacking dependencies, the build will fail on our
side and we can check whether we'll need those.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 23:11:57 +01:00
aszlig
f2364772b8
beets: Use audiotools backend for replaygain.
...
Using commands such as mp3gain and aacgain is only the default for
backwards-compatible reasons. However, on Nix(OS), we would have to
either patch those tools into beets or rely on an impurity, so let's
depend on audiotools and also default to that backend.
Of course, there is also a GStreamer backend, but it comes with a hell
of additional dependencies (which not only cover audio files), which is
why I decided against defaulting to GStreamer and package audiotools
instead (in eecd932
).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 23:06:28 +01:00
aszlig
2acc258dff
beets: Allow to configure plugin dependencies.
...
This also fleshes out/fixes the unit tests, which I've used for
gathering the individual requirements.
Along various Python dependencies we now also have a build-time
dependency on bashInteractive and a runtime dependency on
bashCompletion, which is needed for command line completion to work
correctly.
However, some tests for the shell completion fail at the moment, so I've
disabled them for now.
The patch for fixing mediafile codec info is a modified version of
sampsyo/beets@903e88a , where I just dropped the second hunk modifying
the changelog. It is already merged to master and thus expected to be in
the next upstream version.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 23:05:22 +01:00
aszlig
d84ea8aea7
beets: Switch to using fetchFromGitHub.
...
The reason for doing this is because the package on PyPI is missing some
files needed for running the test suite (for example:
test/test_completion.sh).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 22:46:22 +01:00
Bjørn Forsman
7f06428544
xidel: new package
...
Command line tool to download and extract data from html/xml page.
http://videlibri.sourceforge.net/xidel.html
2014-12-30 14:00:37 +01:00
William A. Kennington III
afeef240dc
kerberos: Use default kerberos instead of krb5
2014-12-30 00:05:12 -08:00
Domen Kožar
503071b77f
Merge pull request #5495 from mcox/unbound
...
nixpkgs: unbound 1.4.22 -> 1.5.1
2014-12-30 03:46:36 +01:00
aszlig
814a0519fe
beets: Add myself to maintainers.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 03:31:27 +01:00
Tobias Geerinckx-Rice
c64257b8e5
Fix user-facing typos (mainly in descriptions)
2014-12-30 03:31:03 +01:00
aszlig
de29819b03
beets: Update to new upstream version 1.3.9.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 03:29:16 +01:00
aszlig
d6874d6063
beets: Move into its own package directory.
...
The primary use of beets is not as a Python library and users usually
would expect to install it into the env using "nix-env -i beets" rather
than "nix-env -i pythonX.Y-beets".
Having beets in its own package directory also allows for better
customization, where we're going to implement attributes that can be
used to turn on/off various features and plugins.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-12-30 03:23:37 +01:00
Austin Seipp
c619e54e60
nmap: fix dependencies on makeWrapper/python
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-29 12:55:14 -06:00
Austin Seipp
2cabafd363
nixpkgs: afl-1.04b -> 1.06b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-28 23:45:25 -06:00
Austin Seipp
bf5935e34c
nixpkgs: p0f 3.07b -> 3.08b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-28 23:43:34 -06:00
Austin Seipp
baa2e7326f
nixpkgs: nmap 6.40 -> 6.47
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-28 23:41:54 -06:00
Matthew William Cox
676c462faa
nixpkgs: unbound 1.4.22 -> 1.5.1
2014-12-28 17:52:03 -05:00
Charles Strahan
145733c479
Merge branch 'master' of github.com:nixos/nixpkgs into pleasant-ruby
...
Conflicts:
pkgs/applications/version-management/redmine/default.nix
pkgs/development/interpreters/ruby/gem.nix
pkgs/development/interpreters/ruby/generated.nix
pkgs/development/interpreters/ruby/patches.nix
pkgs/development/tools/vagrant/default.nix
pkgs/servers/consul/default.nix
2014-12-28 14:29:52 -05:00
Eelco Dolstra
782440310d
ntp: Don't depend on openssl, don't install docs
2014-12-28 19:38:45 +01:00
Charles Strahan
347a9674c1
ghcjs: cleanup
2014-12-27 18:48:12 -05:00
Austin Seipp
79f82686e1
nixpkgs: afl 0.89b -> 1.04b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-26 21:43:05 -06:00
Vladimír Čunát
becf038336
Merge branch 'staging'
2014-12-26 22:41:19 +01:00
Shea Levy
05edd656f6
Missed gcc refs
2014-12-26 12:28:15 -05:00
John Wiegley
28b6fb61e6
Change occurrences of gcc to the more general cc
...
This is done for the sake of Yosemite, which does not have gcc, and yet
this change is also compatible with Linux.
2014-12-26 11:06:21 -06:00
tv
7015c61686
journal-mailer: add version 0.1.1.0
2014-12-26 16:41:18 +01:00
muflax
e5480cab83
bup: update to 0.26 and adopt it
...
[Bjørn: use patchShebangs to unbreak chroot build (fixes up references
to /usr/bin/env {python,bash}]
2014-12-26 14:09:56 +01:00
muflax
001f2110bd
par2cmdline: update to 0.6.11 and adopt it
...
[Bjørn: break overlong longDescription line]
2014-12-26 14:09:56 +01:00
muflax
745e3e64a9
awscli: update to 1.6.10 and adopt it
...
[Bjørn: upper-case first letter in description]
2014-12-26 12:26:08 +01:00
Domen Kožar
4e87c458c4
Merge pull request #5470 from DamienCassou/mu-0.9.11
...
Update mu to 0.9.11
2014-12-25 17:50:47 +01:00
Damien Cassou
41cff1e9d0
Update mu to 0.9.11
2014-12-25 17:15:47 +01:00
Vladimír Čunát
0fbc5ddadb
ntp: security update, and use libcrypto
...
http://support.ntp.org/bin/view/Main/SecurityNotice#Recent_Vulnerabilities
The package would no longer build without libcrypto,
and it wouldn't find it without pkgconfig.
I checked that Debian and Arch do use openssl as a dependency,
so it's probably not so bad a thing to have.
CC maintainer @edolstra.
2014-12-25 12:30:53 +01:00
Vladimír Čunát
3421d4c470
libvdpau, vdpauinfo: update to 0.9, extend meta
...
Add myself as a maintainer.
The rebuild impact is large, mostly through mesa -> {qt, gtk}.
2014-12-25 09:46:04 +01:00
Karn Kallio
23010cf71a
gnupg: Port socket activation patch to version 2.1.1.
2014-12-24 19:16:38 +01:00
Pascal Wittmann
19a979d9a2
cv: update to 0.6
2014-12-24 15:22:08 +01:00
Bjørn Forsman
1a79e7ffdc
attic: fetchurl -> fetchzip
...
fetchzip calculates the hash of the extracted archive, so that
(irrelevant) changes done to the dynamically generated archive doesn't
cause our hash to be outdated.
2014-12-24 12:07:19 +01:00
koral
9eee22aaca
safe-rm: 0.11 -> 0.12
2014-12-23 22:32:49 +01:00
Patrick Mahoney
26e74d8a3e
Update skarnet.org software for 2.0 release.
...
New build system using configure script and GNU Make 4.0, and new
releases of the following using the new build system:
execline 2.0.0.0
s6 2.0.0.0
s6-dns 2.0.0.0
s6-linux-utils 2.0.0.0
s6-networking 2.0.0.0
s6-portable-utils 2.0.0.0
skalibs 2.0.0.0
2014-12-23 15:24:30 -06:00
William A. Kennington III
ebfd21de84
ceph: 0.90 final
2014-12-23 10:52:49 -08:00
Patrick Mahoney
a6f35b3e60
connect 1.104
...
Upstream moved to https://bitbucket.org/gotoh/connect
2014-12-23 09:07:39 -06:00
Peter Simons
4bb1e611a2
Merge pull request #5440 from ip1981/strongswan
...
Patches to Strongswan
2014-12-23 13:02:08 +01:00
Domen Kožar
d2e6891be9
trash-cli: assert we're on linux
2014-12-23 11:30:56 +01:00
Domen Kožar
168f541724
Merge pull request #5442 from rycee/package/trash-cli
...
Add package 'trash-cli'.
2014-12-23 11:17:41 +01:00
Robert Helgesson
b017231a21
Add package 'trash-cli'.
2014-12-23 10:22:37 +01:00
Igor Pashev
17d8029150
Strongswan: preserve PATH
2014-12-22 20:20:58 +00:00
Igor Pashev
9bbe674927
Strongswan: use full path to ipsec
...
This fixes issue:
... charon[6135]: 11[CHD] updown: /bin/sh: ipsec: command not found
2014-12-22 20:20:15 +00:00
Pascal Wittmann
389f745efb
Merge pull request #5429 from joachifm/fix-attic-checksum
...
attic: fix sha256
2014-12-22 19:03:24 +01:00
Joachim Fasting
bee4a4e5dc
attic: fix sha256
2014-12-22 05:11:58 +01:00
Michael Raskin
77436079e9
Pipelight: 0.2.7.3 → 0.2.8, also update Wine
2014-12-21 20:19:33 +03:00
Michael Raskin
ed19e6755f
ZPAQ: 655 → 660
2014-12-21 11:14:26 +03:00
Michael Raskin
641307f553
Drop wrong default.upstream
2014-12-21 11:14:25 +03:00
Michael Raskin
13fbe8150a
GlusterFS; 3.6.0 → 3.6.1
2014-12-21 11:14:25 +03:00
Michael Raskin
32160007ff
FreeIPMI: 1.4.6 → 1.4.7
2014-12-21 11:14:25 +03:00
Pascal Wittmann
f94580da69
Fix license attribute of many bsd-like licensed packages
2014-12-21 00:00:35 +01:00
Pascal Wittmann
f55545c0c9
fix maintainer information
...
s/maintainer/maintainers
2014-12-20 21:54:22 +01:00
Arseniy Seroka
c08149c6a4
Merge pull request #5384 from ts468/glusterfs
...
FIX: Change local state dir
2014-12-20 02:09:08 +03:00
Pascal Wittmann
bc19ef9efe
bfr: update source url, fix build and adopt it
2014-12-19 23:17:07 +01:00
Pascal Wittmann
197ea06a73
axel: add meta-information
2014-12-19 22:57:38 +01:00
Kovacsics Robert (rmk35)
caa521c8d2
Updated remind package name (otherwise unchanged).
...
Also added myself to the maintainers list.
2014-12-19 16:44:00 +00:00
Vincent Laporte
5191d694c2
timidity: update from 2.13.0 to 2.14.0
2014-12-19 11:29:54 +01:00
lethalman
6c5f112bd5
Merge pull request #5377 from wjlroe/logstash-forwarder-20141216-update
...
Bump logstash-forwarder git version and GoLang to latest
2014-12-19 10:24:57 +01:00
lethalman
70bede51a2
Merge pull request #5370 from KoviRobi/master
...
Added package 'fatsort'.
2014-12-19 10:23:13 +01:00
Bjørn Forsman
4b65f53652
gdmap: set meta attributes (license, platforms, maintainers)
2014-12-19 08:01:08 +01:00
Peter Simons
c9a2bbdf65
cabal-install-1.20.0.4: patch the build manually instead of relying on jailbreak
...
jailbreak-cabal has trouble with that cabal file when built with older versions
of the Cabal library.
2014-12-19 07:45:11 +01:00
Evgeny Egorochkin
26fc2c4988
youtube-dl: update from 2014.12.16 to 2014.12.17.2
2014-12-19 08:35:01 +02:00
Evgeny Egorochkin
4bf9039abf
privoxy: update from 3.0.21 to 3.0.22
2014-12-19 08:34:32 +02:00
William A. Kennington III
86971fd33b
gnupg: Fix src hash
2014-12-18 11:37:58 -08:00
Peter Simons
fa165e137d
cabal-install: update to version 1.20.0.4
...
The test suite had to be disabled because of https://github.com/haskell/cabal/issues/2285 .
2014-12-18 18:36:49 +01:00
Eelco Dolstra
011e581a4e
dhcpcd: Update to 6.6.6
2014-12-18 14:11:10 +01:00
Eelco Dolstra
5274749b7b
less: Update to 471
2014-12-18 14:11:10 +01:00
Vladimír Čunát
ec5e916f6f
attic: add maintainer and platforms
...
CC #5374 .
2014-12-18 13:36:35 +01:00
Eelco Dolstra
6866712a39
sudo: Update to 1.8.11p2
2014-12-18 12:31:56 +01:00
Thomas Strobel
d07154b3bc
FIX: Change local state dir, which must be writable, from "/nix/store/...glusterfs..." to "/var"
2014-12-18 11:20:03 +01:00
vbgl
78ae54bf49
Merge pull request #5375 from ftrvxmtrx/master
...
plan9port: fix destination path in sources; add myself as a maintainer
2014-12-18 09:52:59 +01:00
Bjørn Forsman
1fde0738ca
attic: fix missing modules at runtime
...
Switch buildInputs to propagatedBuildInputs. Without this attic won't
run at all.
2014-12-18 08:40:20 +01:00
Wayne Scott
4a0aff5f3b
attic: upgrade to 0.14
2014-12-18 08:21:36 +01:00
Bjørn Forsman
a8af7f16ce
attic: expression cleanup
...
Clean up some whitespace errors and add namePrefix = "" to make package
name like attribute name (no pythonX.Y- prefix).
2014-12-18 08:14:52 +01:00
Wayne Scott
110333abd3
attic: fix path to OPENSSL headers.
2014-12-18 08:12:12 +01:00
Siarhei Zirukin
2c8ff5fdb7
plan9port: fix destination path in sources; add myself as a maintainer
2014-12-17 23:37:18 +01:00
William Roe
fe4da34ffd
Bump logstash-forwarder git version and go to latest
2014-12-17 20:50:23 +00:00
Kovacsics Robert (rmk35)
6f608967f4
Added package 'fatsort'.
...
Fatsort sorts partition table on FAT12/16/32 partitions for devices that
don't sort the files for themselves (e.g. some media players).
2014-12-17 13:54:13 +00:00
wmertens
2fb69f5277
Merge pull request #5196 from madjar/cloud-init
...
cloud-init: add expression and service
2014-12-17 06:58:54 +01:00
Domen Kožar
9de5eb6ade
remove btrfsProgs-3_16, not needed anymore
2014-12-17 01:20:05 +01:00
William A. Kennington III
973f4bedbf
bareos: 14.2.1 -> 14.2.2
2014-12-16 15:53:12 -08:00
William A. Kennington III
56908ab49f
pinentry: 0.8.4 -> 0.9.0
2014-12-16 15:30:16 -08:00
William A. Kennington III
b671a46f92
gnupg: 2.1.0 -> 2.1.1
2014-12-16 15:24:28 -08:00
William A. Kennington III
02f75f91f1
xfsprogs: 3.2.1 -> 3.2.2
2014-12-16 15:22:53 -08:00
William A. Kennington III
0cfd61bdea
btrfs-progs: 3.17.2 -> 3.17.3
2014-12-16 14:25:27 -08:00
William A. Kennington III
1368e94ae2
tinc: Update pre 1.1
2014-12-16 13:54:44 -08:00
William A. Kennington III
cbe467ef99
ceph: 0.89 -> 0.90-pre
2014-12-16 11:44:08 -08:00
Mateusz Kowalczyk
51ca7fdf0b
youtube-dl: update to 2014.12.16
2014-12-16 07:01:49 +00:00
Wayne Scott
6dc9ea2a2c
Package attic-backup.org
2014-12-15 17:00:10 -05:00
Eelco Dolstra
997531d172
Document screen incompatibility
2014-12-15 19:55:37 +01:00
lethalman
8ad61fcb10
Merge pull request #5327 from k0ral/moreutils
...
New package: moreutils-0.54
2014-12-14 13:33:11 +01:00
koral
421b3ebe25
New package: moreutils-0.54
2014-12-14 12:49:07 +01:00
Arseniy Seroka
60d3660f71
Merge pull request #5324 from prikhi/add-wyrd
...
Add the Wyrd Front-End for Remind
2014-12-14 13:31:46 +03:00
Eelco Dolstra
bd0d1e836c
nix-repl: Update
2014-12-14 05:29:32 +01:00
Eelco Dolstra
e115bdecd8
nix: Update to 1.8
2014-12-14 05:29:24 +01:00
Pavan Rikhi
62b98c458d
Add the Wyrd Front-End for Remind
2014-12-13 20:23:09 -05:00
Eelco Dolstra
188c038897
Add nix-serve
2014-12-14 02:19:54 +01:00
Pascal Wittmann
1f0fdd7c28
added tmsu, a tool for tagging your files
2014-12-13 23:50:49 +01:00
Pavan Rikhi
0df1c05f71
Add the Profile Sync Daemon Package & NixOS Module
2014-12-13 09:24:12 -05:00
tv
86055e2f00
nixopsUnstable: Initial version 1.3pre1362_2a616f8
2014-12-12 16:30:54 +01:00
Oliver Charles
40bbc1806a
opentsdb: Use the release tarball
...
Now that https://github.com/OpenTSDB/opentsdb/issues/420 is resolved
we can use the official release tarball. This includes all third
party JARs, which vastly simplifies the build expression.
2014-12-12 12:43:15 +00:00
Mateusz Kowalczyk
4fcb615498
youtube-dl: update to 2014.12.12.1
2014-12-12 03:09:02 +00:00
Jaka Hudoklin
1465d9321d
thc-hydra: include postgresql brute-force support
2014-12-11 23:25:26 +01:00
Jaka Hudoklin
3ceb789c36
john: use systemd wide config, and not from store
2014-12-11 23:25:26 +01:00
Domen Kožar
3dc551fcc3
opentsdb: patch shebangs in correct directory
...
(cherry picked from commit 105b77f36f1810287b0f32036ae5303dae8c5a66)
Signed-off-by: Domen Kožar <domen@dev.si>
2014-12-11 09:17:45 +01:00
Mateusz Kowalczyk
3d713ff1d6
youtube-dl: update from 2014.12.06.1 to 2014.12.10.3
2014-12-10 23:22:24 +00:00
Vladimír Čunát
225ddcda9a
cpio: fix CVE-2014-9112 by Fedora patch
2014-12-10 19:20:28 +01:00
Austin Seipp
5c52382448
tor-arm: kill tabs
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-10 04:21:14 -06:00
Austin Seipp
7a51e5f416
nixpkgs: fix tor-arm dependencies
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-10 04:14:11 -06:00
Austin Seipp
0d63eae992
tor-arm: Fix python path
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-10 04:06:02 -06:00
Austin Seipp
b31283dd8b
nixpkgs: add tor-arm 1.4.5.0
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-10 03:59:59 -06:00
Domen Kožar
0ec12d53e6
tcpcrypt: 2011.07.22 -> 0.3rc1, fix nixos service
2014-12-10 10:23:46 +01:00
Mateusz Kowalczyk
ddcb9db54f
youtube-dl: update to 2014.12.06.1
...
Also add self to maintainers considering I bump it pretty often already.
2014-12-10 09:15:59 +00:00
Austin Seipp
323113ef6d
nixpkgs: afl 0.85b -> 0.89b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-09 21:59:28 -06:00
wmertens
24924e4fdf
Merge pull request #5125 from nckx/eid-mw
...
Add eid-mw: authenticate & sign with Belgian eID identity cards
2014-12-08 16:40:54 +01:00
Domen Kožar
de99c9c955
Merge branch 'staging'
2014-12-08 16:28:45 +01:00
Jaka Hudoklin
51fe9d17a8
Merge pull request #5261 from matejc/connman126
...
connman: update to 1.26
2014-12-08 13:01:12 +01:00
Jaka Hudoklin
d4cb3056ec
Merge pull request #5262 from matejc/cmst20141205
...
cmst: update to 2014.12.05
2014-12-08 13:01:02 +01:00
Matej Cotman
4b74502a35
cmst: update to 2014.12.05
2014-12-08 12:49:28 +01:00
Matej Cotman
94f8f28433
connman: update to 1.26
2014-12-08 12:47:00 +01:00
Edward Tjörnhammar
3ce89ba002
srm: added package
2014-12-08 11:51:39 +01:00
Domen Kožar
4aa3eec330
Merge branch 'master' into staging
...
Conflicts:
pkgs/development/libraries/fontconfig/default.nix
2014-12-07 14:02:48 +01:00
Richard Wallace
b00f6cde88
wrap pasystray to provide XDG_DATA_DIRS so tray icon displays correctly
2014-12-06 15:50:26 -07:00
cillianderoiste
4687494b7c
Merge pull request #5245 from ftrvxmtrx/plan9port
...
plan9port: make it actually work
2014-12-06 15:46:59 +00:00
Siarhei Zirukin
60f2081019
plan9port: make it actually work
...
* Add "which" dependency, otherwise it builds with lots of
"command not found" errors.
* -lgcc_s, otherwise many commands basically fail without pthread_cancel.
* Fix X11 dependencies, otherwise it would be plan9port with none of UI
programs working.
2014-12-06 16:18:30 +01:00
Bjørn Forsman
32da2ba923
plantuml: update from 7991 to 8012
2014-12-06 16:13:15 +01:00
Austin Seipp
c3bdbd3b52
nixpkgs: tor-browser 4.0.1 -> 4.0.2
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-06 05:01:28 -06:00
Austin Seipp
92eb86e110
nixpkgs: add myself as a 'tor' maintainer
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-06 05:01:27 -06:00
Austin Seipp
c206c728a8
nixpkgs: tor depends on torsocks
...
This may seem strange, but tor distributes its 'torify' wrapper which in
turn attempts to use torsocks to bridge a connection, meaning 'tor'
users out the box may want it to work.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-06 05:00:27 -06:00
Austin Seipp
d92d0eca92
nixpkgs: torsocks 1.3 -> 2.0.0
...
Additionally, this fixes 'torsocks' using the 'which' executable as a
dependency.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-06 05:00:26 -06:00
Pascal Wittmann
47eabfabe2
Merge pull request #5239 from robberer/pkgs/mrtg
...
mrtg: add 2.17.4
2014-12-06 10:58:53 +01:00
Longrin Wischnewski
cf4318ad4e
mrtg: add 2.17.4
...
- The Multi Router Traffic Grapher
- You have a router, you want to know what it does all day long?
- Then MRTG is for you. It will monitor SNMP network devices and draw
- pretty pictures showing how much traffic has passed through each interface.
2014-12-06 09:05:29 +01:00
Tobias Geerinckx-Rice
51ccf09ba2
Add duff: find duplicate files from the command line
2014-12-06 00:10:08 +01:00
Tobias Geerinckx-Rice
b7425f8fef
Add eid-mw: authenticate & sign with Belgian eID identity cards
2014-12-05 23:15:44 +01:00
Rok Garbas
24848992bc
goaccess: update to 0.8.5
2014-12-05 11:30:25 +01:00
Charles Strahan
aadb556e29
lastpass-cli: new package
...
This adds the official lastpass CLI, a utility for manipulating lastpass logins.
2014-12-04 18:23:25 -05:00
William A. Kennington III
d2a2c77643
ceph: 0.88 -> 0.89
2014-12-04 15:17:58 -08:00
Pascal Wittmann
00444ab724
logstalgia: fix build with new glm version
2014-12-04 14:31:28 +01:00
Luca Bruno
51992d82a1
Merge "Ipxe" PR #5208
...
Fixed some indentation issues
2014-12-04 12:04:08 +01:00
Emery Hemingway
3faacca044
nixpkgs: iPXE initial package
2014-12-04 11:03:56 +01:00
Shea Levy
fcaf268d54
nixUnstable: bump
2014-12-03 22:22:18 -05:00
Austin Seipp
25d883a46d
nixpkgs: afl 0.79b -> 0.85b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-12-03 18:53:20 -06:00
Rob Vermaas
6ae8983a5e
Update dd-agent to 4.4.0
2014-12-03 16:08:39 +01:00
Peter Simons
79486d44c0
tree: don't rely on $CC being set in the stdenv build environment
...
Fixes https://github.com/NixOS/nixpkgs/issues/5214 .
2014-12-03 16:00:41 +01:00
Bjørn Forsman
3ba01941ce
duply: update 1.7.3 -> 1.9.1
2014-12-02 22:56:44 +01:00
Bjørn Forsman
998e6153be
duplicity: update 0.6.24 -> 0.6.25 (latest stable)
2014-12-02 22:56:44 +01:00
Thomas Tuegel
02157ab123
libcurl: honor $SSL_CERT_FILE (fixed)
...
The previous attempt to patch libcurl used
getenv("CURL_CA_BUNDLE") || getenv("SSL_CERT_FILE")
to get the second environment variable if the first is unset.
Unfortunately, this broke libcurl because the (||) operator is C returns
only 0 or 1, so it is inappropriate for pointer comparisons! Now we use
getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE")
instead. This has one downside: it always calls getenv twice! But,
that's a small price to pay for actually being correct.
2014-12-02 10:41:24 -06:00
Domen Kožar
f57d22fd05
openvpn: fix build
2014-12-02 15:30:25 +01:00
Domen Kožar
cc0d52846e
openvpn: 2.3.4 -> 2.3.6 (CVE-2014-8104)
2014-12-02 13:11:37 +01:00
lethalman
9bce8d2ef2
Merge pull request #5190 from deepfire/debootstrap-version-fix
...
debootstrap | 404-fix: -> 1.0.64, since 1.0.63 disappeared from archive
2014-12-02 10:59:14 +01:00
Domen Kožar
a2acbc230a
Merge pull request #5191 from AndersonTorres/megatools
...
Megatools: update to 1.9.93
2014-12-01 22:03:34 +01:00
Moritz Ulrich
77049af46f
pngcheck: New package.
2014-12-01 17:05:20 +01:00
Georges Dubus
1c3a9336ed
Packaged cloud-init and its dependencies
2014-12-01 10:55:45 +01:00
Austin Seipp
8f6279be5c
afl: 0.68b -> 0.79b
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-11-30 13:19:26 -06:00
AndersonTorres
3af34aa2b1
Megatools: update to 1.9.93
2014-11-30 12:07:44 -02:00
Kosyrev Serge
ae72e5ba8f
debootstrap | 404-fix: -> 1.0.64, since 1.0.63 disappeared from archive
2014-11-30 16:51:42 +03:00
Arseniy Seroka
5b8fb2239c
Merge pull request #5188 from DamienCassou/umlet
...
New package for Umlet 13.1
2014-11-30 15:30:03 +03:00
Damien Cassou
dcc2f1ac38
New package for Umlet 13.1
2014-11-30 12:56:08 +01:00
Corey O'Connor
b2f3e10a35
Add primus and extend bumblebee to support 32bit/64bit multilib architectures.
...
Using primusrun will work as expected in a multilib environment. Even if the initial program
executes a antoehr program of the another architecture. Assuming the program does not modify
LD_LIBRARY_PATH inappropriately.
This does not update virtualgl for seemless multilib. I was unable to get a mixed 64/32 bit
environment to work with VirtualGL. The mechanism VirtualGL uses to inject the fake GL library would
fail if both 32bit and 64 bit libraries were in the environment. Instead the bumblebee package
creates a optirun32 executable that can be used to run a 32bit executable with optimus on a 64 bit
host. This is not created if the host is 32bit.
For my usage, gaming under wine, the primusrun executable works as expected regardless of
32bit/64bit.
2014-11-29 16:42:00 -08:00
Jaka Hudoklin
31ebe4d89d
Merge pull request #5181 from grwlf/plowshare
...
plowshare: version bump
2014-11-29 21:57:05 +01:00
Sergey Mironov
2e95f697fb
plowshare: version bump
...
fixes games/adom downloader
2014-11-29 23:39:33 +03:00
Jaka Hudoklin
88d4ae98ae
Merge pull request #5168 from pmahoney/skarnet-refactor
...
Skarnet refactor
2014-11-29 02:48:06 +01:00
Ricardo M. Correia
d4b4bae307
Update my maintainership
2014-11-29 02:15:39 +01:00
Patrick Mahoney
cf5f282940
Consolidate conf-compile steps for skarnet.org pkgs.
2014-11-28 13:10:37 -06:00
Vladimír Čunát
cbd2305d4d
Merge branch 'master' into staging
2014-11-28 18:59:07 +01:00
Vladimír Čunát
06c6d4696d
*: fix builds by disregarding warning from new glibc
...
Also, in case of collectd, the -lgcc_s shouldn't be needed anymore,
as the library is in ${glibc}/lib/ now, which is practically always on RPATH.
In case of seyren it was some stdenv change uncovering the mistake of
putting src into buildInputs.
2014-11-28 18:42:03 +01:00
Pascal Wittmann
4261ab39a8
nzbget: update from 14.0 to 14.1
2014-11-28 11:08:12 +01:00
cillianderoiste
d2a1867a20
Merge pull request #5157 from magnetophon/sselp
...
sselp prints X selection to standard out
2014-11-28 09:33:44 +00:00
Mateusz Kowalczyk
456312a5fc
youtube-dl: update to 2014.11.27
2014-11-28 02:31:01 +00:00
Michael Raskin
0fc32b90d8
Add qrcode minimalistic QR-code decode/encode tool (for pure codes only)
2014-11-28 00:12:26 +03:00
Michael Raskin
9ef9544189
Adding quirc QR code decoder
2014-11-28 00:12:26 +03:00
Bart Brouns
647617885d
added platforms and maintainers
2014-11-27 21:30:36 +01:00
Bart Brouns
b7f51920ee
sselp prints X selection to standard out
2014-11-27 21:06:24 +01:00
Wout Mertens
cacf3f6c1e
Merge branch 'curl-ssl-cert-file' of https://github.com/the-kenny/nixpkgs into staging
...
Standardize NixOS on using only SSL_CERT_FILE for the trusted SSL certificate store.
2014-11-27 13:29:50 +01:00
Oliver Charles
1132484200
opentsdb: Use fetchurl to fetch all dependencies
2014-11-27 12:06:01 +00:00
Domen Kožar
34ca304f58
network-manager: 0.9.8.8 -> 0.9.8.10
2014-11-27 12:10:20 +01:00
Domen Kožar
91bdca38a0
NetworkManager.service -> network-manager.service
2014-11-27 12:10:20 +01:00
Vladimír Čunát
abcb355453
restund, openssh_hpn: mark as broken
2014-11-27 01:19:24 +01:00
William A. Kennington III
021efdf021
yubico-piv-tool: 0.1.0 -> 0.1.2
2014-11-26 15:50:15 -08:00
William A. Kennington III
e1988740a5
yubikey-personalization: 1.16.0 -> 1.16.1
2014-11-26 15:47:43 -08:00
William A. Kennington III
17a1b67cb6
btrfsprogs: 3.17.1 -> 3.17.2
2014-11-26 15:47:43 -08:00
Vladimír Čunát
bdc323c540
opentsdb: mark as broken
...
It tries to download things and fails. CC @ocharles.
2014-11-27 00:45:47 +01:00
Vladimír Čunát
a68c1adc35
*: fix builds by disregarding warning from new glibc
...
Says: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
CC: #4803 . There will likely appear more of these errors on Hydra in time.
2014-11-26 23:40:03 +01:00
muflax
dc9f084278
parcellite: 1.1.7 -> 1.1.9
2014-11-26 21:23:17 +00:00
Vladimír Čunát
b5ff06eda4
Merge branch 'master' into staging
2014-11-26 21:48:26 +01:00
Domen Kožar
f45b6fb078
fix tarball job
2014-11-26 21:04:59 +01:00
Edward Tjörnhammar
49e112c309
i2pd: 0.3.0 -> 0.4.0
2014-11-25 21:15:53 +01:00
Austin Seipp
57ec90f90f
nixpkgs: Fuzzing test case optimizer
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-11-25 13:03:43 -06:00
Austin Seipp
b0dc5b17ca
nixpkgs: American Fuzzy Lop
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-11-25 12:43:03 -06:00
Pascal Wittmann
10c9196c0f
parallel: update from 20141022 to 20141122
2014-11-25 18:18:05 +01:00
Pascal Wittmann
880f6a517e
bmon: update from 3.5 to 3.6
2014-11-25 18:18:05 +01:00
Igor Pashev
4f9111e91f
strongSwan needs python for building ( Closes #4940 )
2014-11-25 15:29:05 +01:00
Shea Levy
140e1de0ec
strongswan: dont patchelf
...
fixes #5045 ('fixes')
2014-11-24 20:50:26 -05:00
Vladimír Čunát
a9bad25ffe
Merge branch 'master' into staging
2014-11-24 22:14:25 +01:00
Oliver Charles
9cab0e1b8a
Add meta information to hbase, bosun, scollector, opentsdb
2014-11-24 14:40:48 +00:00
Oliver Charles
751a2943f4
opentsdb: Upgrade to 2.1.0-RC1
2014-11-24 14:40:47 +00:00
Oliver Charles
764cca613d
opentsdb: New package and NixOS module
2014-11-24 14:40:47 +00:00
Edward Tjörnhammar
4c1d65130f
Merge pull request #5066 from vbgl/kst
...
Adds Kst
2014-11-24 15:23:27 +01:00
Arseniy Seroka
fd5566da41
Merge pull request #5080 from joachifm/dnscrypt-refactor
...
dnscrypt-proxy: minor superficial improvements
2014-11-24 15:48:47 +03:00
Domen Kožar
d8e89ebd4b
xmlroff: 0.3.98 -> 0.6.2
2014-11-24 08:43:43 +01:00
Bjørn Forsman
bad831d6fe
rdiff-backup: unbreak 'rdiff-backup-statistics'
...
By adding needed module to python sys.path. Fixes this:
$ rdiff-backup-statistics backup-dir
Traceback (most recent call last):
File "/home/bfo/.nix-profile/bin/rdiff-backup-statistics", line 24, in
<module>
from rdiff_backup import connection, regress, rpath, Globals,
restore, \
ImportError: No module named rdiff_backup
2014-11-23 21:58:46 +01:00
Bjørn Forsman
98344757b9
rdiff-backup: set meta.platforms
2014-11-23 21:35:24 +01:00
Shea Levy
3cc397b2a1
dar: bump
...
cc @viric
2014-11-23 12:56:49 -05:00
Michael Raskin
b67bf6e038
Behave in a sane way in ZXing wrapper when user gives --help argument
2014-11-23 16:27:28 +03:00
Tobias Geerinckx-Rice
d72f6c85e4
Add eid-viewer: Java reader for Belgian eID identity cards
2014-11-23 00:42:52 +01:00
Michael Raskin
e511865580
Add a binary distribution of ZXing 1D/2D code library
2014-11-23 02:35:15 +03:00
Domen Kožar
10592215a7
Merge pull request #5076 from ehmry/cjdns
...
cjdns: update 20141023 -> 20141121
2014-11-22 22:53:35 +01:00
Joachim Fasting
119d93e223
dnscrypt-proxy: minor superficial improvements
...
- Use upstream description and explicitly set platforms = all
- Coding conventions fix
2014-11-22 16:19:06 +01:00
vbgl
a4a235c0d0
Merge pull request #5082 from robberer/pkgs/clamav
...
clamav: bump 0.98.4 to 0.98.5
2014-11-22 10:35:21 +00:00
Longrin Wischnewski
a8bce0cf73
clamav: bump 0.98.4 to 0.98.5
2014-11-22 09:50:41 +01:00
Thomas Tuegel
c2740b5017
network-manager: patch for libnl-3.2.25
2014-11-21 21:15:18 -06:00
Emery Hemingway
9f1bd2d419
cjdns: update 20141023 -> 20141121
...
include protocol version in package version string
2014-11-21 18:04:53 -05:00
Shea Levy
97f35cf29a
nixUnstable: bump
...
Bug fixed in b0c5c2a was giving me segfaults...
2014-11-21 08:36:02 -05:00
Vincent Laporte
d1d22919aa
Adds Kst-2.0.8
...
Kst is a real-time large-dataset viewing and plotting tool that has
built-in data analysis functionality.
Homepage: https://kst-plot.kde.org/
2014-11-21 11:54:59 +00:00
Edward Tjörnhammar
2151abb92d
i2pd: 0.2.0 -> 0.3.0
2014-11-21 11:53:04 +01:00
vbgl
3e8fd1b30b
Merge pull request #5014 from doublec/tor
...
Update Tor to 0.2.5.10.
2014-11-21 07:33:53 +00:00
Emery Hemingway
c1f458eb85
initial liquidsoap package expression
2014-11-20 17:34:14 -05:00
Thomas Tuegel
dfaa39db41
polkit-qt-1: Qt 5 support
...
polkit-qt-1 is upgraded to the latest version, which supports Qt 5. The
attributes are also renamed to differentiate the Qt 4 and Qt 5
branches. The prior naming scheme differentiated between polkit-qt-1 and
polkit-qt, but we no longer package the latter.
2014-11-20 11:10:39 -06:00
Mateusz Kowalczyk
8570046e5c
rlwrap: update from 0.41 to 0.42
2014-11-20 13:28:43 +00:00
Eelco Dolstra
87419c016f
openssh: Update to 6.7p1
2014-11-20 12:12:33 +01:00
Moritz Ulrich
f4ab3dc223
libcurl: Honor $SSL_CERT_FILE
2014-11-19 23:50:48 +01:00
Mateusz Kowalczyk
03655c332a
Add meta.branch to a bunch of packages
...
Gives better results in the monitor
2014-11-19 18:54:58 +00:00
Domen Kožar
8236ca5d70
properly package pyopenssl
2014-11-19 19:41:44 +01:00
Mateusz Kowalczyk
5b156eb20a
Merge pull request #5019 from Fuuzetsu/updates
...
Updates (orphans)
2014-11-19 18:31:45 +00:00
Eelco Dolstra
8be7b23cb3
nixUnstable: Update to 1.8pre3899_8299aaf
2014-11-19 18:26:07 +01:00
Benno Fünfstück
aa9c9aecbe
xvkbd: set meta.platforms
2014-11-19 12:40:32 +01:00
Pascal Wittmann
7862ef25a9
groff: update from 1.22.2 to 1.22.3 an adopt it
2014-11-19 08:47:41 +01:00
Pascal Wittmann
6e3318e233
nzbget: update from 0.13 to 0.14 and adopt it
2014-11-19 08:47:41 +01:00
Shea Levy
25b4674e67
gnupg-2.1: Add socket activation patch
2014-11-18 16:58:14 -05:00
Robert Helgesson
c6d4881a42
Add package 'xml2'.
2014-11-18 22:01:53 +01:00
Moritz Ulrich
48032400ca
httrack: update from 3.48.19 to 3.48.20
2014-11-18 21:20:53 +01:00
Arseniy Seroka
0bb6efa314
Merge pull request #5023 from doublec/torbrowser
...
Update Tor Browser to 4.0.1
2014-11-18 18:11:47 +03:00
Pascal Wittmann
dfc3140b3d
Merge pull request #5031 from AndersonTorres/youtubeDL
...
Youtube-DL: update to 2014.11.16
2014-11-18 14:47:21 +01:00
AndersonTorres
a24225da61
Youtube-DL: update to 2014.11.16
2014-11-18 11:31:55 -02:00
wmertens
53488aa023
Merge pull request #5026 from robberer/pkgs/hdf5
...
hdf5: move to a more stable URL
2014-11-18 14:07:13 +01:00
Chris Double
32d09e2699
Update Tor Browser to 4.0.1
...
Updates Tor Browser to 4.0.1. This requires the gcc 4.9 runtime.
Add myself to the maintainers.
2014-11-18 23:46:42 +13:00
Longrin Wischnewski
73aef348bb
hdf5: move to a more stable URL
2014-11-18 11:14:17 +01:00
Mateusz Kowalczyk
f4c350d26e
dropbear: update from 2013.62 to 2014.66
2014-11-17 18:09:30 +00:00
Chris Double
75425ff879
Update Tor to 0.2.5.10.
...
Updates Tor to latest stable version.
Add myself to the maintainer list.
2014-11-18 01:47:42 +13:00
vbgl
2a6f4eb86f
Merge pull request #5011 from 4z3/urlwatch-1.17
...
urlwatch: update to version 1.17
2014-11-17 07:11:43 +00:00
Shea Levy
8b9b0d95a0
nixUnstable: bump
2014-11-17 00:59:31 -05:00
tv
a9a10ac2ed
urlwatch: update to version 1.17
2014-11-17 04:18:09 +01:00
Eelco Dolstra
a0f3faf34e
Merge remote-tracking branch 'origin/glibc-2.20' into staging
2014-11-16 22:17:36 +01:00
Aristid Breitkreuz
7bb0ff509c
remove gcc 3.3 and snx ("SSL Network Extender"), the only package that depends on it
2014-11-16 14:57:42 +01:00
Michael Raskin
ef9a3161d7
Fix obsolete gs option usage by asymptote
2014-11-16 13:28:16 +03:00
Pascal Wittmann
11aa16d2a6
Merge pull request #5000 from ikervagyok/hdf
...
updated hdf5 to version HDF5-1.8.14
2014-11-16 10:11:09 +01:00
Lengyel Balázs
79fc5bde48
updated hdf5 to version HDF5-1.8.14
2014-11-16 09:27:32 +01:00
Michael Raskin
cee91fe789
Update lftp
2014-11-16 10:54:02 +03:00
Michael Raskin
b3b9ec4c89
Add a fallback URL for lftp
2014-11-16 10:54:02 +03:00
Michael Raskin
1a69d88174
Update pdftk and fix its build
2014-11-16 02:16:42 +04:00
Aristid Breitkreuz
05d4db4c71
fix openobex build
2014-11-15 22:32:47 +01:00
Benno Fünfstück
a1bca683f4
xvkbd: new expression
2014-11-15 21:37:34 +01:00
Evgeny Egorochkin
7e2f54ae44
youtube-dl: update from 2014.11.12 to 2014.11.13.3
2014-11-15 22:20:16 +02:00
Michael Raskin
17140ebba8
Fix tex4ht build: our new stdenv lacks CC (why, by the way?) so default to gcc if CC empty
2014-11-16 00:12:29 +04:00
Thomas Hunger
41d89224c9
Update fail2ban to 0.9.1.
...
Version 0.9 is no longer available for downloat at github.
2014-11-15 16:54:40 +00:00
Pascal Wittmann
58ad907b49
abduco: update from 0.1 to 0.2
2014-11-15 16:21:56 +01:00
Pascal Wittmann
dd37edd2d8
dvtm: update from 0.12 to 0.13
2014-11-15 16:21:56 +01:00
Pascal Wittmann
2c19d082fb
opkg: update from 0.2.3 to 0.2.4
2014-11-15 12:19:54 +01:00
Domen Kožar
62dd6c1d72
pastebinit: fix build
2014-11-15 10:57:51 +01:00
William A. Kennington III
596a46caf7
btrfs-progs: 3.17 -> 3.17.1
2014-11-14 22:46:59 -08:00
William A. Kennington III
cd9619f871
dhcp: 4.3.0 -> 4.3.1
2014-11-14 22:44:13 -08:00
William A. Kennington III
6fbb5711f5
pcsclite: 1.8.12 -> 1.8.13
2014-11-14 22:22:12 -08:00
William A. Kennington III
f4249e7f5a
ceph: 0.87 -> 0.88
2014-11-14 21:59:32 -08:00
Petr Rockai
c5b5020681
ConTeXt: Update to a current version & include it in texLiveFull.
2014-11-14 22:49:06 +01:00
Shea Levy
4fe383de48
strongswan: bump
2014-11-14 15:22:22 -05:00
Pascal Wittmann
de8df3ce47
rxp: update from 1.2.3 to 1.5.0
2014-11-14 19:20:16 +01:00
Eelco Dolstra
ca441636f1
Merge branch 'staging'
2014-11-14 16:00:23 +01:00
Eelco Dolstra
03d828a976
nixUnstable: Update to 1.8pre3890_8cfe939
2014-11-14 16:00:00 +01:00
Vladimír Čunát
b4af993c3f
Merge branch 'master' into staging
...
Conflicts (simple):
pkgs/development/lisp-modules/clwrapper/setup-hook.sh
2014-11-14 14:28:23 +01:00
Pascal Wittmann
18ffe551e8
acct: update from 6.6.1 to 6.6.2 and adopt it
2014-11-14 12:15:26 +01:00
Eelco Dolstra
9073d554a5
checkinstall: Fix RPM builds
...
https://bugzilla.novell.com/show_bug.cgi?id=561317
2014-11-13 13:57:33 +01:00
cillianderoiste
6de23f5416
Merge pull request #4967 from bosu/vol2.4
...
volatility: upgrade to 2.4
2014-11-12 22:47:08 +01:00
Michael Raskin
0d6306be4d
Merge pull request #4950 from joachifm/dnscrypt-proxy
...
dnscrypt-proxy service
2014-11-13 00:25:05 +03:00
Boris Sukholitko
1e8e9b9398
volatility: upgrade to 2.4
2014-11-12 22:35:42 +02:00
Pascal Wittmann
f6b8460aa4
youtube-dl: update from 2014.11.04 to 2014.11.12
2014-11-12 16:11:07 +01:00
Eelco Dolstra
f33fa1b66b
Merge remote-tracking branch 'origin/master' into staging
...
Conflicts:
pkgs/development/libraries/boost/generic.nix
2014-11-11 23:48:08 +01:00
Joachim Fasting
216ed76821
dnscrypt-proxy: new expression
2014-11-11 22:46:49 +01:00
Pascal Wittmann
ea49ac0496
flashrom: fix 4936
2014-11-11 21:53:37 +01:00
Pascal Wittmann
8df0e0b151
Fixed many descriptions
2014-11-11 14:36:34 +01:00
Peter Simons
2650bdf417
Merge pull request #4894 from peti/haskell-updates
...
Drop obsolete versions of Haskell Platform ...
2014-11-11 13:42:03 +01:00
Eelco Dolstra
65221567c1
glibc: Include a copy of libgcc_s.so.1
...
This prevents failures like "libgcc_s.so.1 must be installed for
pthread_cancel to work" that occur because Glibc assumes libgcc_s.so.1
to be in Glibc's libdir.
This solution is pretty hacky, because the libgcc_s.so.1 from
bootstrap-tools might be too old. So if we update GCC, programs might
end up using an outdated libgcc_s.so.1. Ideally, we would build
libgcc_s.so.1 *before* Glibc, which might not be impossible...
Fixes #3548 .
2014-11-11 10:23:26 +01:00
Vladimír Čunát
adb831e8bc
strongswan: -lgcc_s, fixes #4925
...
CC maint. @shlevy.
2014-11-11 07:42:00 +01:00
Vladimír Čunát
4849e32abe
curl: update to fix CVE-2014-3707
2014-11-10 21:34:03 +01:00
Vladimír Čunát
28abe40149
pciutils: update, extend meta, maintain
2014-11-10 20:17:35 +01:00
Luca Bruno
6af0d6974f
Merge branch 'master' into staging
2014-11-10 10:03:52 +01:00
Charles Strahan
cf8f4963a7
rename rubyLibs to rubyPackages
2014-11-09 22:16:58 +00:00
Eike Kettner
c805b29026
update texlive-extra to 2014-10-24
2014-11-09 22:48:24 +01:00
Pascal Wittmann
fa9af37751
kermit: update from 8.0.211 to 9.0.302
2014-11-09 17:26:37 +01:00
Jaka Hudoklin
3d2f1c3385
Merge pull request #4854 from offlinehacker/pkgs/libguestfs/add
...
Add augex, hivex and libguestfs
2014-11-09 16:09:51 +01:00
Jaka Hudoklin
cc3ba83055
Add augeas, configuration editing tool
2014-11-09 14:32:08 +01:00
Lengyel Balázs
c437ad42ad
Updated texlive-base and texlive-lang to 2014-10-24
2014-11-09 14:19:35 +01:00
Edward Tjörnhammar
c329e5bbd9
i2pd: added package, service
2014-11-09 09:55:35 +01:00
Emery Hemingway
67a2a58314
cjdns: service tweaks, new NixOS test
2014-11-08 23:39:02 +01:00
Aristid Breitkreuz
928177aa91
Merge pull request #4834 from offlinehacker/pkgs/flannel/add
...
Add flannel, etcd backed network fabric for containers
2014-11-08 19:56:16 +01:00
Vladimir Still
7ade583953
rubber: Disable etex detection.
...
If etex detection is running it forces LaTeX files using etex package to
be compiled with elatex which is no longer part of current TexLive,
efectivelly making it impossible to simply compile them without hacking
through rubber's commandline option.
I took this fix from fedora .spec for rubber.
2014-11-08 19:53:17 +01:00
Luca Bruno
83221f3886
Merge branch 'master' into staging
...
Makes the build more useful:
- Disabled hybrid iso, makes installer tests pass again
- Imagemagick fixes to the "Illegal instruction" thing
2014-11-08 15:56:40 +01:00
Peter Simons
0b36cbf8e7
cabal-install: drop obsolete versions 0.10.2, 0.14.0, 0.6.2, 0.8.0, and 0.8.2
2014-11-08 15:50:21 +01:00
Mateusz Kowalczyk
6c7793713d
lshw: fix location of the binary
...
The binary was going into sbin so even with package in profile we still
couldn't use it.
cc @phreedom
2014-11-08 03:10:26 +00:00
Eike Kettner
e96df6c6f9
html2text: new package
...
Closes #4864
2014-11-07 23:19:49 +00:00
Cillian de Róiste
afc80bb170
Fixed typo: home -> homepage
2014-11-07 16:51:27 +01:00
Alexey Levan
3fb4af7f75
pasystray: add meta attributes
2014-11-07 17:19:50 +02:00
Alexey Levan
ede000316a
pasystray: new package
2014-11-07 14:42:45 +02:00
Alexey Levan
662d357684
Add anthy support to uim
2014-11-07 11:17:48 +02:00
Michael Raskin
3e118edf3a
Refactor and fix fdm build. Moved makeFlags definition because non-builderDefs packages cannot use $out in direct variable definitions like makeFlags.
2014-11-07 12:05:15 +03:00
宋文武
33d1a9a3cf
ostree: new package
2014-11-07 13:30:04 +08:00
Rickard Nilsson
3b6953abdf
Up syslog-ng-incubator to work with syslog-ng 3.6
...
Also disable riemann extension, since it is now part of 3.6.
2014-11-06 21:59:04 +01:00
Rickard Nilsson
71f64ded06
Revert "Revert "syslog-ng: Update from 3.5.6 to 3.6.1""
...
This reverts commit 8e1072fd60
.
2014-11-06 21:59:04 +01:00
William A. Kennington III
850da1803f
gnupg: Add gnupg 2.1 as default
...
Additionally, move all gnupg expressions into the gnupg folder.
2014-11-06 11:44:12 -08:00
Eelco Dolstra
0518ccf5af
Merge remote-tracking branch 'origin/master' into staging
...
Conflicts:
pkgs/stdenv/generic/default.nix
2014-11-06 10:16:39 +01:00
Mateusz Kowalczyk
007f80c1d0
Turn more licenses into lib.licenses style
...
Should eval cleanly, as far as -A tarball tells me.
Relevant: issue #2999 , issue #739
2014-11-06 00:48:16 +00:00
Mathijs Kwik
d0e0d62e61
add duperemove: btrfs deduplication tool
2014-11-06 00:02:45 +01:00
Michael Raskin
aeb032044d
Readd BtrFS-progs 3.16 for snapper build
2014-11-06 00:32:31 +03:00
Bjørn Forsman
ef321f539d
opkg-utils: new package
...
Helper scripts for use with the opkg package manager.
Upstream doesn't do releases it seems, so I'm packaging the latest git
version.
2014-11-05 21:58:12 +01:00
Rickard Nilsson
f2b6b9871f
new package: swaks, a command line SMTP tool
2014-11-05 21:43:25 +01:00
Vladimír Čunát
52404a868d
Merge recent master into staging
...
Nixpkgs Hydra: ?compare=1157272
TODO: port e22889064f
Conflicts:
nixos/tests/gnome3_10.nix (auto-solved)
pkgs/applications/video/aegisub/default.nix
pkgs/development/libraries/boost/1.55.nix
2014-11-05 15:00:44 +01:00
Vladimir Kirillov
e10a8b7318
ec2-ami-tools -> 1.5.6, updated license & homepage
2014-11-05 15:28:52 +02:00
wmertens
e13f15b43a
Merge pull request #4839 from cdepillabout/fcitx-with-plugins-2
...
Create wrapper package for fcitx with plugins.
2014-11-05 13:44:44 +01:00
Mateusz Kowalczyk
7e4e091e0b
Merge pull request #4841 from AndersonTorres/master
...
Youtube-dl: upgrade to 2014.11.04
2014-11-05 09:39:04 +00:00
Evgeny Egorochkin
ac8c944332
add myself as a maintainer
2014-11-05 11:35:32 +02:00
Michael Raskin
bc5f55cc91
Adopt a few packages
2014-11-05 11:56:19 +03:00
Michael Raskin
167115f1a2
Update siege HTTP load-tester
2014-11-05 11:56:19 +03:00
AndersonTorres
56e9b2c953
Youtube-dl: upgrade to 2014.11.04
2014-11-05 06:01:24 -02:00
Michael Raskin
895debb20f
Update IPMIutil
2014-11-05 10:46:26 +03:00
Michael Raskin
eca021ccc5
Fix NILFS-utils source
2014-11-05 09:23:25 +03:00
(cdep)illabout
f0c3c54712
Create wrapper package for fcitx with plugins.
...
This creates a wrapper package for fcitx so that plugins can be enabled
by the user. This is based on the wrapper package for
pidgin-with-plugins.
By using this wrapper instead of the fcitx package itself, it will be
possible for the user to enable/disable plugins.
2014-11-05 10:37:10 +09:00
William A. Kennington III
cbc05e77eb
bareos: Add derivation
2014-11-04 11:11:14 -08:00
Jaka Hudoklin
f253186e96
Add flannel, etcd backed network fabric for containers
2014-11-04 19:32:30 +01:00
Vladimir Kirillov
049a991bc1
awscli -> 1.5.5, botocore -> 0.69.0
2014-11-04 19:44:13 +02:00
Eelco Dolstra
7495c61d49
Merge remote-tracking branch 'origin/darwin-clang-stdenv' into staging
...
Conflicts:
pkgs/applications/editors/vim/macvim.nix
2014-11-04 14:30:43 +01:00
Rob Vermaas
c9d40dc6f8
oathToolkit: update from 2.0.2 to 2.4.1, potentially fixes CVE-2013-4204, CVE-2013-6280, CVE-2013-7322
2014-11-04 10:22:46 +01:00
Michael Raskin
5854eb09eb
Update NILFS2 utils
2014-11-04 12:04:42 +03:00
John Wiegley
80b0f385f0
emacs24Packages.auctex: 11.87 -> 11.88
2014-11-03 17:30:49 -06:00
William A. Kennington III
7c605db462
tinc_pre: Update to f57d53c
2014-11-03 14:21:30 -08:00
Peter Simons
b5fed52c43
Merge pull request #4238 from wkennington/master.boost
...
Make boost 156 the default
2014-11-03 23:03:01 +01:00
Michael Raskin
4fd8e1eac0
Update ioping
2014-11-04 00:37:42 +03:00
Michael Raskin
04635a87eb
Update monit
2014-11-03 16:54:38 +03:00
Michael Raskin
1042d595c4
Update TeX-disser thesis template for Russian styles
2014-11-03 16:54:38 +03:00
Jaka Hudoklin
c2d4fd7360
Merge pull request #4762 from ambrop72/badvpn-debug
...
badvpn: Add debug flag to enable assertions.
2014-11-03 14:07:28 +01:00
Vladimír Čunát
ed867a50eb
iconv: remove usage on Linux in several packages
...
This fixes builds after #4419 . Thanks to @vbgl for the original commit;
I changed that as I'm not sure whether passing null values to buildInputs is clean.
CC maintainers: @coroa, @peti, @phreedom, @robberer, @jcumming.
2014-11-03 12:58:54 +01:00
Evgeny Egorochkin
3a03bf5700
youtube-dl: update from 2014.10.30 to 2014.11.02.1
2014-11-03 13:18:20 +02:00
William A. Kennington III
79cc2754ca
syslog-ng-incubator: Refactor
2014-11-02 17:22:28 -08:00
William A. Kennington III
8e1072fd60
Revert "syslog-ng: Update from 3.5.6 to 3.6.1"
...
This reverts commit e2ada42623
.
2014-11-02 17:22:28 -08:00
William A. Kennington III
a9c472d16e
boost: Fix incompatible applications
2014-11-02 17:22:28 -08:00
William A. Kennington III
b94f27b846
ceph: 0.86 -> 0.87
2014-11-02 17:22:27 -08:00
William A. Kennington III
5ae216558f
jfsrec: Remove derivation
2014-11-02 17:22:27 -08:00
William A. Kennington III
94f80e66d3
boost: Remove legacy users
2014-11-02 17:22:27 -08:00
William A. Kennington III
aa3e800be7
boost: Remove boost.lib
2014-11-02 17:22:27 -08:00
William A. Kennington III
7b06577d4b
iperf3: 3.0.8 -> 3.0.9
2014-11-02 17:22:01 -08:00
William A. Kennington III
674a588b0a
btrfs-progs: 3.16.2 -> 3.17
2014-11-02 17:18:50 -08:00
Michael Raskin
4ef5bd9918
Update Pipelight: both Wine version and Pipelight distribution
2014-11-02 23:51:58 +03:00
Michael Raskin
815bbfb852
Update GlusterFS
2014-11-02 23:51:58 +03:00
Michael Raskin
b6c0e1825b
Update FreeIPMI
2014-11-02 23:51:58 +03:00
Arseniy Seroka
2b61f0b204
Merge pull request #4772 from abbradar/lbzip2
...
lbzip2: add package
2014-11-02 22:38:39 +03:00
lethalman
560fd3a5b7
Merge pull request #4742 from abbradar/bcache-stage1
...
Support bcache volumes in initrd
2014-11-02 17:29:38 +01:00
Nikolay Amiantov
92f94e901a
bcache-tools: don't use probe-bcache and bcache-register
...
This allows us not to include any additional binaries for bcache
support in initrd; just an udev rule.
2014-11-02 19:03:41 +03:00
Peter Simons
a9c53037fa
Merge remote-tracking branch 'origin/master' into staging.
2014-11-02 16:15:53 +01:00
lethalman
a63cf7a1fa
Merge pull request #4771 from abbradar/pbzip2-update
...
pbzip2: update package
2014-11-02 00:52:28 +01:00
Nikolay Amiantov
b6529ce1f6
lbzip2: add package
2014-11-02 02:05:54 +03:00
Nikolay Amiantov
f2a27d8d81
pbzip2: update package
2014-11-02 02:04:36 +03:00
Igor Pashev
ce5cc9d803
Added pxz
2014-11-01 18:59:20 +01:00
ambrop7@gmail.com
4664321cd3
badvpn: Add debug flag to enable assertions.
2014-11-01 15:16:28 +01:00
Evgeny Egorochkin
eb8f380f4e
pwgen: update from 2.06 to 2.07
2014-11-01 14:52:11 +02:00
Evgeny Egorochkin
767814e585
youtube-dl: update from 2014.10.25 to 2014.10.30
2014-11-01 14:52:11 +02:00
Emery Hemingway
6b7eda4ddc
mbox does not support i686
2014-10-31 11:48:55 -04:00
Georges Dubus
d8f5d246e6
nox: use pypi for distribution
2014-10-31 14:19:33 +01:00
Peter Simons
b11060d8db
Merge remote-tracking branch 'origin/master' into staging.
2014-10-31 11:14:24 +01:00
Pascal Wittmann
a156a6b2a7
opkg: update from 0.2.2 to 0.2.3
2014-10-30 19:02:42 +01:00
cillianderoiste
4b78eff026
Merge pull request #4729 from deepfire/ifuse
...
ifuse: new expression
2014-10-30 14:08:31 +01:00
Georges Dubus
925684e83d
Updated nox
2014-10-30 14:01:32 +01:00
Franz Pletz
e630ee2fdd
wget: Update to 1.16 (fix CVE-2014-4877)
...
This patch updates wget to the current version, 1.16. This release fixes a
remotely exploitable security issue: CVE-2014-4877.
A dependency on libidn was added and the testsuite now depends on
python3. A patch that disables a test was removed because it is not needed
anymore.
As I intend to take care of wget in the future, I added myself to the
maintainers.
2014-10-30 10:30:08 +01:00
Kosyrev Serge
b3ebe093b0
ifuse: new expression
2014-10-30 12:11:24 +03:00
Eelco Dolstra
1acfbca7df
grub2: Fix building against Glibc 2.20
...
http://hydra.nixos.org/build/16563301
2014-10-30 09:28:10 +01:00
William A. Kennington III
578d77ae0e
jfsrec: Undelete and fix evaluation
2014-10-29 09:23:08 -07:00
Eelco Dolstra
dc0d68ffc3
curl: Remove static link support
...
We only needed this for the stdenv bootstrap, but not anymore.
2014-10-29 13:43:00 +01:00
Eelco Dolstra
5cc92eb0d8
Remove obsolete useDietLibC stdenv adapter
2014-10-29 13:43:00 +01:00
William A. Kennington III
06f8885609
libusb: 1.0.18 -> 1.0.19
2014-10-29 02:05:17 -07:00
William A. Kennington III
fa6275857e
yubico-piv-tool: Add derivation
2014-10-29 02:05:17 -07:00
William A. Kennington III
4e8d55c59f
pinentry: 0.8.3 -> 0.8.4
2014-10-29 02:05:17 -07:00
Domen Kožar
419f15b060
Remove http_proxy/ftp_proxy overrides used in setup hooks.
...
Partially reverts eaa4db148d
. Used
together with nix-shell it results into unresolvable domains. For
example: `nix-shell -p libxml2` spawns a shell with non-working DNS.
chroot should remove such unpurities.
2014-10-28 23:20:59 +01:00
Emery Hemingway
358acd7d52
mbox: initial package
...
http://pdos.csail.mit.edu/mbox
2014-10-28 12:43:51 -04:00
Pascal Wittmann
e7bfcdac05
parallel: update from 20140922 to 20141022
2014-10-28 15:51:47 +01:00
Nikolay Amiantov
1f101efa88
update-resolv-conf: add package
2014-10-28 03:04:14 -07:00
Aristid Breitkreuz
b6314fdad6
rsnapshot: add (commented) code for an idea that did not work out yet
2014-10-27 21:02:04 +01:00
Aristid Breitkreuz
93f2c180d0
rsnapshot: add git version & make it configurable in the nixos module
2014-10-27 20:38:39 +01:00
Bjørn Forsman
d12da7007c
fping: set meta.platforms
2014-10-27 18:20:46 +01:00
Rickard Nilsson
e2ada42623
syslog-ng: Update from 3.5.6 to 3.6.1
...
Also update the NixOS module, syslog-ng now automatically listens to
the systemd journal, so we don't have to set up syslog.socket.
2014-10-27 12:22:22 +01:00
Rob Vermaas
8b47b67329
Update to latest awscli
2014-10-27 12:00:07 +01:00
Evgeny Egorochkin
7eb9b172bb
youtube-dl: update from 2014.10.13 to 2014.10.25
2014-10-27 07:35:13 +02:00
Alastair Pharo
47dc7990ec
enca: update from 1.15 to 1.16
2014-10-27 07:28:23 +02:00
Evgeny Egorochkin
7a01610988
logcheck: update from 1.3.16 to 1.3.17
2014-10-27 07:16:33 +02:00
Mateusz Kowalczyk
881a645c38
gifsicle: update from 1.84 to 1.86
2014-10-27 00:53:19 +00:00
Anders Papitto
0d11520727
add rcm, Management Suite for Dotfiles
2014-10-26 00:17:26 +02:00
Evgeny Egorochkin
a6dc9ce957
tor: update from 0.2.4.23 to 0.2.4.24
2014-10-25 20:31:54 +03:00
Evgeny Egorochkin
8977addc3a
youtubeDL: update from 2014.09.19 to 2014.10.13
2014-10-25 20:31:54 +03:00
Lluís Batlle i Rossell
f3d978be65
cjdns: installing contrib scripts
...
I made the nodejs and python scripts have the proper shebang. A lot more
of them could be updated to reference store paths (calls to "python",
etc.)
(cherry picked from commit 2fb382afb6319065f20af22d86774df190beb0d5)
2014-10-25 15:52:54 +02:00
William A. Kennington III
ce590c3fc7
yubikey-personalization-gui: Add derivation
2014-10-24 16:37:37 -07:00
William A. Kennington III
2910183d5e
yubikey-personalization: Add derivation
2014-10-24 16:37:37 -07:00
viric
f75e5330f3
Merge pull request #4658 from ehmry/cjdns
...
cjdns: update 20140928 to 20141023
2014-10-24 23:20:52 +02:00
Emery Hemingway
957602c40c
cjdns: update 20140928 to 20141023
2014-10-24 17:15:13 -04:00
Lluís Batlle i Rossell
7da0fecf32
Adding an extra url for nc6. The previous was failing.
2014-10-24 23:14:35 +02:00
Eelco Dolstra
f4be4f5e54
Merge remote-tracking branch 'origin/master' into staging
2014-10-24 12:24:13 +02:00
Edward Tjörnhammar
a5af1c228e
Adding fetchurl mirrors for roy marples projects(dhcpcd, openresolv)
2014-10-23 19:45:33 +02:00
cillianderoiste
fd7c18e5cb
Merge pull request #4539 from cdepillabout/fctix-configtool
...
Added package for fcitx-configtool.
2014-10-23 19:44:02 +02:00
cillianderoiste
5c6ae9c6d3
Merge pull request #4623 from abbradar/rng-tools
...
rng-tools: update package
2014-10-23 19:35:08 +02:00
Vladimír Čunát
2cf17b0802
Merge recent master into staging
...
Hydra nixpkgs: ?compare=1156478
2014-10-23 17:40:41 +02:00
Shea Levy
2ac3c2e462
nixUnstable: Bump
2014-10-23 09:21:12 -04:00
Mateusz Kowalczyk
342e7748e2
Merge pull request #4624 from abbradar/wipe
...
wipe: add package
2014-10-23 11:50:12 +01:00
Mateusz Kowalczyk
f5c9daf99e
Merge pull request #4530 from ts468/simple-tpm
...
Add package: simple-tpm-pk11
2014-10-23 11:47:44 +01:00
Mateusz Kowalczyk
0e840902ff
Merge pull request #4629 from ts468/aide
...
New package: AIDE, version 0.16a2
2014-10-23 11:47:22 +01:00
Mateusz Kowalczyk
adb034f299
Merge pull request #4522 from ts468/trustedGrub
...
Add package: trustedGrub
2014-10-23 11:47:05 +01:00
Mateusz Kowalczyk
d5385034be
Merge pull request #4508 from ts468/opencryptoki
...
Add package: opencryptoki
2014-10-23 11:46:33 +01:00
Michael Raskin
3bd29ef68f
Add dmtx-utils after update broke dmtx command-line use
2014-10-23 08:55:44 +04:00
Thomas Strobel
c89c3649d2
New package: AIDE, version 0.16a2
...
Advanced Intrusion Detection Environment (AIDE) is a file and directory integrity checker
2014-10-23 01:29:14 +02:00
Domen Kožar
efea92de19
fixes #1933
2014-10-23 00:14:09 +02:00
Nikolay Amiantov
0f2af778b7
wipe: add package
2014-10-23 02:08:37 +04:00
Nikolay Amiantov
9fa041e3e6
rng-tools: update package
2014-10-23 02:07:46 +04:00
Aristid Breitkreuz
608aeede89
Merge pull request #4597 from ehmry/cjdns
...
Cjdns
2014-10-22 20:49:20 +02:00
Aristid Breitkreuz
69989eea1b
Merge pull request #4615 from abbradar/rpmextract
...
rpmextract: accept multiple input files
2014-10-22 20:48:14 +02:00
Valérian Galliat
1f4456fb5a
Add `youtube-dl` license
2014-10-22 20:35:42 +02:00
aszlig
eea4fce4a5
btrfsprogs: Revert update to version 3.17.
...
This reverts commit 249e417677
.
Breaks snapper:
http://hydra.nixos.org/build/16420291
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 18:12:12 +02:00
Domen Kožar
c01af09401
squashfs: -lgcc_s
2014-10-22 15:06:05 +02:00
Nikolay Amiantov
b580be236c
rpmextract: accept multiple input files
2014-10-22 16:53:32 +04:00
Domen Kožar
b3a4c3c2d0
squashfs: 4.3 -> 4.4, hopefully fixes http://hydra.nixos.org/build/16422733
2014-10-22 14:36:56 +02:00
aszlig
57aaf3d36e
Merge branch 'nixpart-1.0-preparations'.
...
Partially and temporarily addresses NixOS/nixops#228 .
We now have an up-to-date version of Blivet and a bunch of its dependen-
cies as well as the old nixpart 0.4 with all its old and crappy
dependencies, which should fix _simple_ partitioning layouts for NixOps.
Also, nixpart 1.0 is now marked as broken, because it is not yet
released and this branch is more of a preparation and "damage control"
in case I shouldn't manage to finish nixpart + nixos-assimilate in time
for the next NixOS release.
2014-10-22 08:23:31 +02:00
aszlig
78ef5f9c14
nixpart: Move all 0.4 dependencies into one dir.
...
Once nixpart 1.0 is released we then only need to delete one single
directory rather than searching for needles in a haystack, that is, all
of <nixpkgs>. Also, it keeps my sanity at an almost healthy level.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 08:22:59 +02:00
aszlig
7676ff5973
nixpart: Bring back requirements for version 0.4.
...
Quite a mess but at least the mdraid tests succeed now. However, the
lvm2 tests are still failing, so we need to bring back a few more old
crap :-(
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 08:22:58 +02:00
aszlig
16371fce91
nixpart: Bump version to 1.0.0 and mark as broken.
...
We don't want Hydra to even try and build this, because we're going to
fill in the right sha256 as soon as the the new nixpart version is
released.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 08:22:57 +02:00
aszlig
cb2c34f1bb
blivet: Update to new upstream version 0.67.
...
Put a copy of old version 0.17 expression into 0.17.nix and update the
pointers from nixpart0 accordingly.
This also means, that plain nixpart is now way more broken than
nixpart0 (we might want to temporarily fix 0.4 anyway).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 08:22:57 +02:00
aszlig
7deadbb55f
nixpart: Copy package expression to 0.4.nix.
...
Update the nixpart0 pointer to point to this version, because we're
going to update blivet as well and NixOps still points to nixpart0.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 01:54:48 +02:00
aszlig
34ae3b7f77
parted: Update to new upstream version 3.2.
...
In order to properly run tests, we need to fix the unicode tests and
after some search, I have found that Ludo (who is also the <nixpkgs>
maintainer of parted) already reported this upstream and also provided a
solution:
http://lists.gnu.org/archive/html/bug-parted/2014-08/msg00003.html
I'm updating parted to 3.2, because the latest blivet implementation
relies on it for device geometry calculations.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-10-22 01:54:47 +02:00
koral
03ec2d9477
New package: safe-rm-0.11
2014-10-21 20:19:57 +02:00