3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

16856 commits

Author SHA1 Message Date
Pascal Wittmann 03b2a4dd79
fondu: add license
see issue #43716
2018-08-05 16:41:49 +02:00
Pascal Wittmann 9119cd2a9e
dosfstools: add license
see issue #43716
2018-08-05 16:34:12 +02:00
Pascal Wittmann 9ff03a7716
disper: add license
see issue #43716
2018-08-05 16:29:27 +02:00
Pascal Wittmann f611b23aee
diskscan: add license
see issue #43716
2018-08-05 16:28:41 +02:00
Pascal Wittmann 31b8aebded
dirmngr: add license
see issue #43716
2018-08-05 16:27:34 +02:00
Pascal Wittmann 71caa7c54a
convmv: add license
see issue #43716
2018-08-05 16:14:20 +02:00
Pascal Wittmann 4269eb17dc
brasero: inherit meta in wrapper
see issue #43716
2018-08-05 16:06:55 +02:00
Pascal Wittmann 5c831c7bfe
brasero: correct license, is actually gpl2Plus
see issue #43716
2018-08-05 16:02:07 +02:00
Pascal Wittmann 1058537c7c
rtorrent: add license
see issue #43716
2018-08-04 19:12:54 +02:00
Pascal Wittmann 2bc6257cfd
sbsigntool: add license
see issue #43716
2018-08-04 18:54:35 +02:00
Pascal Wittmann 3cea40adb3
scrot: add license
see issue #43716
2018-08-04 18:46:28 +02:00
Pascal Wittmann 6482d5c3d1
seccure: add license
see issue #43716
2018-08-04 18:42:30 +02:00
Pascal Wittmann 847e1bd906
setserial: add license
see issue #43716
2018-08-04 18:41:06 +02:00
Pascal Wittmann 58b24cf4d2
shfmt: add license
see issue #43716
2018-08-04 18:38:46 +02:00
Pascal Wittmann 49a39aac3e
ssss: add license
see issue #43716
2018-08-04 17:00:58 +02:00
Pascal Wittmann e700483077
sstp: add license
see issue #43716
2018-08-04 16:59:43 +02:00
Pascal Wittmann 8743f8f29a
surfraw: add license
see issue #43716
2018-08-04 16:55:09 +02:00
Pascal Wittmann bc4494b56f
vmfs-tools: add license
see issue #43716
2018-08-04 16:15:01 +02:00
Pascal Wittmann 997418e5ee
vnc2flv: add license
see issue #43716
2018-08-04 16:13:28 +02:00
Pascal Wittmann 834bc4d834
vncrec: add license
see issue #43716
2018-08-04 16:10:58 +02:00
Pascal Wittmann 274f091b95
wv: add license
see issue #43716
2018-08-02 16:36:57 +02:00
Pascal Wittmann cf7227a562
xmacro: add license
see issue #43716
2018-08-02 16:04:32 +02:00
Pascal Wittmann 56e5eb94c7
xmlroff: add license
see issue #43716
2018-08-02 16:02:56 +02:00
Pascal Wittmann 3af85571bf
cabextract: 1.6 -> 1.7 2018-08-02 12:48:35 +02:00
Robert Schütz 5641eb306e abcm2ps: 8.13.23 -> 8.13.24 2018-08-02 12:33:08 +02:00
Tobias Happ 219970b494 cargo-update: init at 1.5.2 (#40575) 2018-08-02 10:28:57 +02:00
Bignaux Ronan 38e582c91d photon: init at 1.0.7 (#44269) 2018-08-02 09:49:54 +02:00
Moritz Angermann acaa6c92fb coreutils: unix-only
Windows is not supported & we currently define "all" to be "unix" + "windows".
2018-08-01 21:18:41 -04:00
aszlig 29e89248bf
beets: Fix building plugins with Python 3
Since the switch to using python3Packages in commit
72934aa94e, the plugins no longer build
because they end up with a mix of Python 2 and Python 3 packages.

The reason for this is that the Beets package itself uses callPackage to
reference the plugins, however the overrides are not applied there and
thus the plugins end up getting pythonPackages from the top-level which
is Python 2 and beets with Python 3 dependencies.

Unfortunately this is not the only reason for the builds to fail,
because both plugins did not actually support Python 3.

For the copyartifacts plugin, the fix is rather easy because we only
need to advance to two more recent commits from upstream, which already
contain fixes for Python 3.

The alternatives plugin on the other hand is not maintained anymore, but
there is a fork at https://github.com/wisp3rwind/beets-alternatives
which has a bunch of fixes. In 2e4aded366
I already backported one of these fixes to the version from
https://github.com/geigerzaehler/beets-alternatives, but for Python 3
support it's a bit more complicated than just one little fix.

So instead of adding another series of patches which replicate the code
base of the fork and become a maintenance burden, I opted to directly
switch to the fork and remove the patch on our side.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @domenkozar, @pjones, @Profpatsch
2018-08-02 01:41:36 +02:00
Will Dietz b0003a1680 proselint: 0.9.0 -> 0.10.0 (#44313) 2018-08-01 22:15:54 +02:00
Maximilian Bosch cd5e01edd9 ocserv: init at 0.12.1 (#42871)
`ocserv` is a VPN server which follows the openconnect protocol
(https://github.com/openconnect/protocol). The packaging is slightly
inspired by the AUR version
(https://aur.archlinux.org/packages/ocserv/).

This patch initializes the package written in C, the man pages and a
module for a simple systemd unit to run the VPN server. The package
supports the following authentication methods for the server:

* `plain` (mostly username/password)
* `pam`

The third method (`radius`) is currently not supported since `nixpkgs`
misses a packaged client.

The module can be used like this:

``` nix
{
  services.ocserv = {
    enable = true;
    config = ''
      ...
    '';
  };
}
```

The option `services.ocserv.config` is required on purpose to
ensure that nobody just enables the service and experiences unexpected
side-effects on the system. For a full reference, please refer to the
man pages, the online docs or the example value.

The docs recommend to simply use `nobody` as user, so no extra user has
been added to the internal user list. Instead a configuration like
this can be used:

```
run-as-user = nobody
run-as-group = nogroup
```

/cc @tenten8401
Fixes #42594
2018-08-01 21:39:09 +02:00
leenaars 2b75a7266c ipgrep: init at 1.0 (#43887) 2018-08-01 15:40:57 +02:00
Jens Binkert 90ce71eb0c ldmtool: init at 0.2.4 (#43975) 2018-08-01 11:40:07 +02:00
Jörg Thalheim 7ceaaa6d3a
Merge pull request #44214 from roconnor/bitcoin
Update Bitcoin and its MiniUPnPc dependency
2018-08-01 09:09:45 +01:00
Jörg Thalheim 980b68dd14
Merge pull request #44279 from bachp/gluster-3.12.12
glusterfs: 3.12.4 -> 3.12.12
2018-08-01 08:59:28 +01:00
Pascal Bach 3c7d0da26c glusterfs: 3.12.4 -> 3.12.12 2018-08-01 00:39:06 +02:00
Pascal Bach b92d6d545c minio-client: 2018-04-28T00-08-20Z -> 2018-07-31T02-28-53Z 2018-08-01 00:36:44 +02:00
R. RyanTM 39566d31d5 argyllcms: 2.0.0 -> 2.0.1 (#43790)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/argyllcms/versions.
2018-07-31 23:33:59 +02:00
Eelco Dolstra 7bc2778ebb
nixUnstable: 2.1pre6148_a4aac7f -> 2.1pre6338_45bcf541 2018-07-31 21:17:10 +02:00
Robert Schütz 2ea26fb794
bittornado: init at unstable-2018-02-09 (#43770) 2018-07-31 14:23:15 +02:00
Sarah Brofeldt cb19404faf
Merge pull request #44245 from Infinisil/add/bukubrow
bukubrow: Init at 2.4.0
2018-07-31 08:35:39 +02:00
Silvan Mosberger 2ee3d84a96
bukubrow: init at 2.4.0 2018-07-30 23:02:19 +02:00
R. RyanTM aedf479ae5 proselint: 0.8.0 -> 0.9.0 (#43917)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/proselint/versions.
2018-07-30 22:32:30 +02:00
Vladyslav Mykhailichenko dba10d2d49 rdedup: 2.0.0 -> 3.0.1 2018-07-30 13:50:51 +03:00
Jörg Thalheim a42311a9f6
Merge pull request #44209 from samueldr/feature/nix-top
nix-top: init at 0.1.0 -> 0.2.0
2018-07-30 10:05:29 +01:00
Jörg Thalheim 8717de96a9 nix-top: simplify installPhase 2018-07-30 10:04:15 +01:00
Jörg Thalheim c5d1f7723b
Merge pull request #43985 from snaar/fix-lesspipe-dependency
lesspipe: add missing dependency on 'file'
2018-07-30 09:46:06 +01:00
Russell O'Connor ae669ad68d miniupnpc_2: 2.0.20171212 -> 2.0.20180203 2018-07-29 22:57:45 -04:00
Samuel Dionne-Riel e1dc63b41b nix-top: 0.1.0 -> 0.2.0 2018-07-29 22:10:49 -04:00
Samuel Dionne-Riel 92eedad50b nix-top: init at 0.1.0 2018-07-29 16:20:22 -04:00