Vladimír Čunát
968b866dcc
Merge #32774 : slurm-spank-x11: init at 0.2.5
2018-02-10 22:48:22 +01:00
Jörg Thalheim
b3e42e607c
Merge pull request #34021 from dtzWill/update/boomerang-20180118
...
boomerang: switch to new active fork, cleanup, maintain
2018-02-10 15:57:24 +00:00
Jörg Thalheim
a0a3f674a7
Merge pull request #34094 from markuskowa/octopus-pr
...
octopus: init at 7.2
2018-02-10 14:14:01 +00:00
Jörg Thalheim
35d36994a4
Merge pull request #34249 from mbode/terraform-landscape_0_1_17
...
terraform-landscape: init at 0.1.17
2018-02-10 13:15:22 +00:00
Jörg Thalheim
3f2b62602c
Merge pull request #34275 from lheckemann/otter
...
otter-browser: init at 0.9.94
2018-02-10 12:53:57 +00:00
Jörg Thalheim
946c6e638a
Merge pull request #34255 from gnidorah/vkquake
...
vkquake: init at 0.97.3
2018-02-10 12:46:14 +00:00
Jörg Thalheim
7e36db84c7
Merge pull request #34285 from fgaz/duktape
...
duktape: init at 2.2.0
2018-02-10 12:35:29 +00:00
Jörg Thalheim
fdc9312dba
Merge pull request #34546 from samdroid-apps/add-spice-up
...
Add presentation app Spice Up
2018-02-10 11:43:09 +00:00
Jörg Thalheim
777c8388e6
Merge pull request #34523 from womfoo/init/librarian-puppet-go-0.3.9
...
librarian-puppet-go: init at 0.3.9
2018-02-10 11:32:40 +00:00
Jörg Thalheim
f7ce8c6cd6
Merge pull request #34522 from magnetophon/infamousPlugins
...
infamousPlugins: init at 0.2.03
2018-02-10 11:27:35 +00:00
Jörg Thalheim
df0fe7aa56
Merge pull request #34510 from sorki/nixops-dns
...
nixops-dns: init at f6c3f79
2018-02-10 10:47:25 +00:00
Jörg Thalheim
1307ffdcd2
Merge pull request #34566 from dotlambda/qmediathekview
...
qmediathekview: init at 2017-04-16
2018-02-10 10:08:59 +00:00
Jörg Thalheim
7fd8e8b40e
Merge pull request #33427 from vdemeester/init-go-symbols
...
go-symbols: init at 2017-02-06
2018-02-10 09:47:30 +00:00
Jörg Thalheim
08d1400816
Merge pull request #34530 from unode/samtools-old
...
samtools-old: init at 0.1.19
2018-02-10 08:34:26 +00:00
Frederik Rietdijk
d8d8a0a00f
Merge pull request #34761 from nico202/papis
...
papis: init at 0.5.2 + dependencies
2018-02-10 08:32:52 +00:00
Jörg Thalheim
80b096b2b3
Merge pull request #34531 from unode/raxml
...
RAxML: init at 8.2.11 (SSE3 & MPI)
2018-02-10 08:32:19 +00:00
Nicolò Balzarotti
dd4144ed62
papis: init at 0.5.2
2018-02-10 09:23:02 +01:00
Jörg Thalheim
3b8bb02f68
Merge pull request #34792 from dywedir/bcachefs
...
linux_testing_bcachefs: 4.11.2017.08.23 -> 4.15.2018.02.09
2018-02-10 08:20:35 +00:00
Graham Christensen
ad78e52357
Merge pull request #29440 from oxij/pkg/linuxPackages
...
linuxPackages: various changes
2018-02-09 20:36:46 -05:00
Robert Schütz
eaf55b1946
eschalot: init at 2018-01-19 ( #34773 )
2018-02-10 01:07:31 +00:00
Jörg Thalheim
2941217227
Revert "squashfuse: init at 0.1.101"
...
This reverts commit 17210fee46
.
2018-02-10 01:03:42 +01:00
dywedir
bad837fd3b
linux_testing_bcachefs: 4.11.2017.08.23 -> 4.15.2018.02.09
2018-02-10 00:41:04 +02:00
Robert Schütz
896ea4b731
qmediathekview: init at 2017-04-16
2018-02-09 23:37:58 +01:00
Jan Malakhovski
a5227789d2
linuxPackages: add more predefined kernels with Xen Dom0
2018-02-09 19:50:05 +00:00
Jan Malakhovski
ac073fe77a
linuxPackages: point linux_hardened to the hardened default linux, not hardened linux_latest
2018-02-09 19:50:04 +00:00
Jan Malakhovski
3a2ee6e5c3
linuxPackages: introduce hardenedLinuxPackagesFor
and cleanup some expressions using it
2018-02-09 19:50:04 +00:00
aszlig
1cba74dfc1
setup-hooks: Add autoPatchelfHook
...
I originally wrote this for packaging proprietary games in Vuizvui[1]
but I thought it would be generally useful as we have a fair amount of
proprietary software lurking around in nixpkgs, which are a bit tedious
to maintain, especially when the library dependencies change after an
update.
So this setup hook searches for all ELF executables and libraries in the
resulting output paths after install phase and uses patchelf to set the
RPATH and interpreter according to what dependencies are available
inside the builder.
For example consider something like this:
stdenv.mkDerivation {
...
nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [ mesa zlib ];
...
}
Whenever for example an executable requires mesa or zlib, the RPATH will
automatically be set to the lib dir of the corresponding dependency.
If the library dependency is required at runtime, an attribute called
runtimeDependencies can be used to list dependencies that are added to
all executables that are discovered unconditionally.
Beside this, it also makes initial packaging of proprietary software
easier, because one no longer has to manually figure out the
dependencies in the first place.
[1]: https://github.com/openlab-aux/vuizvui
Signed-off-by: aszlig <aszlig@nix.build>
Closes : #34506
2018-02-10 00:27:24 +05:30
Franz Pletz
a51cda85ff
Merge pull request #34434 from markuskowa/uhd-fix-boost-pr
...
uhd: 3.10.2.0 -> 3.10.3.0
2018-02-09 18:33:11 +00:00
Jörg Thalheim
7d9313fff3
Merge pull request #34635 from zauberpony/hcloud-init-v1.3.0
...
hcloud: init at 1.3.0
2018-02-09 16:38:12 +00:00
Jörg Thalheim
807d76b30b
Merge pull request #34765 from greedy/fix/libproxy-darwin
...
libproxy: fix building on darwin
2018-02-09 16:02:42 +00:00
Geoffrey Reedy
7f6c4e2703
libproxy: fix building on darwin
2018-02-09 08:33:41 -07:00
Tim Steinbach
4ffe462b10
docker-edge: 18.01.0 -> 18.02.0
2018-02-09 10:25:58 -05:00
Chris Hodapp
c6bd327af8
darktable: Removed unneeded dependencies
...
Based on what LebedevRI told me on IRC and in
https://github.com/darktable-org/darktable/pull/1474
2018-02-09 13:13:31 +01:00
Sam Parkinson
8a7fd9d41f
spice-up: init at 1.2.1
2018-02-09 22:30:09 +11:00
Jörg Thalheim
3b9beaf842
Merge pull request #34658 from thorstenweber83/add-package-slic3r-prusa3d
...
slic3r-prusa3d: init at 1.38.7
2018-02-09 09:51:13 +00:00
Jörg Thalheim
a0a3298091
Merge pull request #34663 from bignaux/squashfuse
...
squashfuse: init at 0.1.101
2018-02-09 09:23:23 +00:00
Jörg Thalheim
d0bac026ec
Merge pull request #34695 from woffs/uudeview
...
uudeview: init at 0.5.20
2018-02-09 09:11:08 +00:00
Matthieu Chevrier
00970f76f9
theharvester: init at 2.7.1 ( #34704 )
2018-02-09 09:00:15 +00:00
adisbladis
d1c5b483d2
yaml2json: init at unstable-2017-05-03
2018-02-09 16:46:21 +08:00
mkgvt
f41eb52bc9
rename: init at 1.9 ( #34719 )
2018-02-09 08:05:11 +00:00
Tim Steinbach
250df5c8fd
Merge pull request #34126 from nicknovitski/kubectl
...
init: kubectl at 1.7.9 (alias for kubernetes with only kubectl component)
2018-02-08 21:49:57 +00:00
Daiderd Jordan
693ab60bb4
Merge pull request #34685 from cransom/fix-darwin-v8_3_16_14
...
v8_3_16_14: fix on darwin
2018-02-08 21:53:22 +01:00
Graham Christensen
a1383aa75f
Merge pull request #34571 from esoeylemez/ertes-slade
...
slade-git: init at 2018.01.29
2018-02-08 09:35:17 -05:00
Graham Christensen
6e782a0ef6
Merge pull request #34572 from esoeylemez/ertes-bcc
...
doom-bcc-git: init at 2018.01.04
2018-02-08 09:34:37 -05:00
Frederik Rietdijk
50a9d51a09
Merge commit '30d031b5d8d05422586043c3f105f4d9110e4f59' into HEAD
2018-02-08 12:14:07 +01:00
sjau
0d65e2e0e5
zfs: add migration path for new crypto format
...
fixes #34559
2018-02-07 20:46:16 +00:00
Graham Christensen
c46c2e281b
Merge pull request #33237 from jluttine/add-diskrsync
...
diskrsync: init at 20170927
2018-02-07 08:15:20 -05:00
Frank Doepper
ef727716cf
uudeview: init at 0.5.20
2018-02-07 11:38:58 +01:00
Daniel Peebles
30d031b5d8
Merge pull request #34339 from bdarnell/curl-http2-darwin
...
curlFull: Add http2Support for darwin
2018-02-07 00:28:53 -05:00
Ben Darnell
c6aa69f48c
curl: Enable http2Support for darwin
...
http2Support was disabled due to a bootstrapping issue involving xz.
Now that xz is available in the bootstrap environment for all
platforms, http2Support can be enabled globally.
2018-02-06 21:50:28 -05:00