Commit Graph

27594 Commits

Author SHA1 Message Date
Michael Raskin
c915fd68cf Merge pull request #22106 from romildo/new.drake
drake: init at 0.9.2.0.3.1
2017-01-24 21:33:20 +00:00
Vincent Laporte
5bcf3c5e25 ocamlPackages.spacetime_lib: init at 0.1.0 2017-01-24 21:20:08 +00:00
Lancelot SIX
18b2c31eaa
pythonPackages.pytest_*: move to pkgs/development/python-modules 2017-01-24 22:13:29 +01:00
Lancelot SIX
b6e5976d4b
pythonPackages.django_guardian: 1.4.4 -> 1.4.6 2017-01-24 22:13:20 +01:00
Lancelot SIX
93d0e4ab5b
pythonPackages.pytestdjango: 2.9.1 -> 3.1.2 2017-01-24 22:13:07 +01:00
Vincent Laporte
ae047510bf ocaml: init at 4.04 2017-01-24 21:13:00 +00:00
Mariusz `shd` Gliwiński
fa8f6f652c pydub: 0.16.7 2017-01-24 21:30:20 +01:00
Tuomas Tynkkynen
fd60260a77 platforms.nix: selectPlatformBySystem: Convert to "switch-case"
Looks generally nicer and used recently in nixpkgs in e.g.
3e197f7d8 ("top-level: Normalize stdenv booting")
2017-01-24 22:13:36 +02:00
John Ericson
5ad696b067 Merge pull request #22107 from Ericson2314/cross-tepid
Somewhat saner cross-compiling through bootstrapping
2017-01-24 15:09:56 -05:00
romildo
a0d29cf33e drake: init at 0.9.2.0.3.1 2017-01-24 16:36:22 -02:00
Michael Raskin
e08cae373b Merge branch 'master' into kwm 2017-01-24 17:59:56 +00:00
Michael Raskin
2bcc678f5a Merge pull request #22070 from LnL7/khd
khd: init at v1.1.4
2017-01-24 17:58:50 +00:00
Michael Raskin
ae4f2fd145 Merge pull request #22066 from mbrgm/journalbeat
journalbeat service: init at 5.1.2
2017-01-24 17:56:48 +00:00
Michael Raskin
7516dbe35e Merge pull request #22045 from rnhmjoj/recursor
PowerDNS Recursor: add package and service
2017-01-24 17:54:47 +00:00
Michael Raskin
47661c831e Merge pull request #22028 from MostAwesomeDude/tahoe
Tahoe-LAFS version bump
2017-01-24 17:49:00 +00:00
Michael Raskin
89278345c2 Merge pull request #22023 from vbgl/apron
ocamlPackages.apron: init at 20160125
2017-01-24 17:47:13 +00:00
Michael Raskin
359ad7f6c0 Merge pull request #22012 from thanegill/patch-1
Fix syncthing-gtk hard coded paths
2017-01-24 17:42:40 +00:00
zimbatm
883eb32e64 gtkmozembedsharp: remove package
The package has:

* broken source URL
* uses md5 hash
* no maintainer
* is a library with nobody depending on it
2017-01-24 16:47:13 +00:00
zimbatm
9120a99807 cilaterm: remove package
The package is broken since September, doesn't have a maintainer and
uses md5 for hashing
2017-01-24 16:45:41 +00:00
John Ericson
bfb147b6a8 top-level: Only splice as needed for performance 2017-01-24 11:37:56 -05:00
John Ericson
4c17cd555f top-level: Document the {local,cross}System, contrasting with *Platform`
This is an implementation detail of how the bootstrapping chain is chosen,
and thus need not be in the manual.
2017-01-24 11:37:56 -05:00
John Ericson
a1a798f017 top-level: crossSystem is no longer exposed to packages. Use *Platform. 2017-01-24 11:37:56 -05:00
John Ericson
92edcb7ebb top-level: Lay the groundwork for {build,host,target}Platform
The long term goal is a big replace:
  { inherit system platform; } => buildPlatform
  crossSystem => hostPlatform
  stdenv.cross => targetPlatform
And additionally making sure each is defined even when not cross compiling.

This commit refactors the bootstrapping code along that vision, but leaves
the old identifiers with their null semantics in place so packages can be
modernized incrementally.
2017-01-24 11:37:56 -05:00
John Ericson
d27403b17b libiconv: TEMP force building library improperly for target plat like libc 2017-01-24 11:37:56 -05:00
John Ericson
bf17d6dacf top-level: Introduce buildPackages for resolving build-time deps
[N.B., this package also applies to the commits that follow it in the same
PR.]

In most cases, buildPackages = pkgs so things work just as before. For
cross compiling, however, buildPackages is resolved as the previous
bootstrapping stage. This allows us to avoid the mkDerivation hacks cross
compiling currently uses today.

To avoid a massive refactor, callPackage will splice together both package
sets. Again to avoid churn, it uses the old `nativeDrv` vs `crossDrv` to do
so. So now, whether cross compiling or not, packages with get a `nativeDrv`
and `crossDrv`---in the non-cross-compiling case they are simply the same
derivation. This is good because it reduces the divergence between the
cross and non-cross dataflow. See `pkgs/top-level/splice.nix` for a comment
along the lines of the preceding paragraph, and the code that does this
splicing.

Also, `forceNativeDrv` is replaced with `forceNativePackages`. The latter
resolves `pkgs` unless the host platform is different from the build
platform, in which case it resolves to `buildPackages`. Note that the
target platform is not important here---it will not prevent
`forcedNativePackages` from resolving to `pkgs`.

--------

Temporarily, we make preserve some dubious decisions in the name of preserving
hashes:

Most importantly, we don't distinguish between "host" and "target" in the
autoconf sense. This leads to the proliferation of *Cross derivations
currently used. What we ought to is resolve native deps of the cross "build
packages" (build = host != target) package set against the "vanilla
packages" (build = host = target) package set. Instead, "build packages"
uses itself, with (informally) target != build in all cases.

This is wrong because it violates the "sliding window" principle of
bootstrapping stages that shifting the platform triple of one stage to the
left coincides with the next stage's platform triple. Only because we don't
explicitly distinguish between "host" and "target" does it appear that the
"sliding window" principle is preserved--indeed it is over the reductionary
"platform double" of just "build" and "host/target".

Additionally, we build libc, libgcc, etc in the same stage as the compilers
themselves, which is wrong because they are used at runtime, not build
time. Fixing this is somewhat subtle, and the solution and problem will be
better explained in the commit that does fix it.

Commits after this will solve both these issues, at the expense of breaking
cross hashes. Native hashes won't be broken, thankfully.

--------

Did the temporary ugliness pan out? Of the packages that currently build in
`release-cross.nix`, the only ones that have their hash changed are
`*.gcc.crossDrv` and `bootstrapTools.*.coreutilsMinimal`. In both cases I
think it doesn't matter.

 1. GCC when doing a `build = host = target = foreign` build (maximally
    cross), still defines environment variables like `CPATH`[1] with
    packages.  This seems assuredly wrong because whether gcc dynamically
    links those, or the programs built by gcc dynamically link those---I
    have no idea which case is reality---they should be foreign. Therefore,
    in all likelihood, I just made the gcc less broken.

 2. Coreutils (ab)used the old cross-compiling infrastructure to depend on
    a native version of itself. When coreutils was overwritten to be built
    with fewer features, the native version it used would also be
    overwritten because the binding was tight. Now it uses the much looser
    `BuildPackages.coreutils` which is just fine as a richer build dep
    doesn't cause any problems and avoids a rebuild.

So, in conclusion I'd say the conservatism payed off. Onward to actually
raking the muck in the next PR!

[1]: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
2017-01-24 11:37:56 -05:00
zimbatm
c3e4c2f179 jjtraveler: remove package
The package is a java library that no other project is using and which
upstream source doesn't work.

See http://www.program-transformation.org/Tools/JJTraveler
2017-01-24 16:34:36 +00:00
zimbatm
1005d786ba libjpeg62: remove
This package has broken upstream url and was only used by warsow
2017-01-24 16:22:25 +00:00
zimbatm
38cc58896c warsow: mark as broken
libjpeg62 is broken as well
2017-01-24 16:16:47 +00:00
zimbatm
a17311a33e antlr3: point to version 3.4
This was pointing to a broken upstream URL and is a beta release. No
dependent in the nixpkgs tree.
2017-01-24 16:15:21 +00:00
Eelco Dolstra
a82810c7a7
linux: Apply 9p veryloose patch to 4.9 2017-01-24 13:05:02 +01:00
Daiderd Jordan
adfb7e1f13
kwm: init at 1.1.4 2017-01-24 08:31:11 +01:00
Corbin
46a522698e pythonPackages.twisted: Fix inotify on Linux. 2017-01-23 17:55:41 -08:00
Corbin
a1906fb541 pythonPackages.foolscap: 0.10.1 -> 0.12.6 2017-01-23 17:54:43 -08:00
Shea Levy
4f9f00fcc9 Add function to build a ghc standalone archive (OSX/iOS only) 2017-01-23 18:35:03 -05:00
Thane Gill
bdd5b81f56 Fix syncthing-gtk hard coded paths 2017-01-23 13:08:08 -08:00
Daiderd Jordan
0f91cdc45f
kwm: init at 4.0.4 2017-01-23 21:45:01 +01:00
Robert Helgesson
df89b9b9e9
perl-MooX-Types-MooseLike-Numeric: 1.02 -> 1.03
Also remove myself from maintainers.
2017-01-23 21:22:53 +01:00
Robert Helgesson
653a7d97cb
perl-MooseX-Types-Common: 0.001013 -> 0.001014
Also remove myself from maintainers.
2017-01-23 21:22:53 +01:00
Tim Cuthbertson
ca38ef79e9 add nix-prefetch-source (#21734) 2017-01-23 17:44:43 +00:00
Marius Bergmann
00444cbf25 journalbeat service: init at 5.1.2
Journalbeat is a log shipper from systemd/journald to
Logstash/Elasticsearch. I added a package as well as a NixOS service
module for it.
2017-01-23 18:28:55 +01:00
Lancelot SIX
43753eafd2 pythonPackages.matplotlib: 1.5.3 -> 2.0.0 2017-01-23 16:48:58 +01:00
Matthew Daiter
cce6f35463 scotch: specify flex version 2017-01-23 13:58:08 +02:00
Franz Pletz
e10cd27269
Merge branch 'staging' 2017-01-23 11:06:41 +01:00
rnhmjoj
d79ea39d04
pdns-recursor: init at 4.0.4 2017-01-23 08:09:51 +01:00
Tim Steinbach
32ae22b387
zulu: init at 8.19.0.1 2017-01-22 19:21:01 -05:00
Graham Christensen
13d6681ce7 release.nix: Only build Only build bootstrap tools when their system is supported 2017-01-23 00:08:21 +01:00
Alistair Bill
6a87904296 msgpack-tools: init at 0.6 2017-01-22 21:11:06 +00:00
Alistair Bill
15b4a37027 neofetch: init at 2.0.2 2017-01-22 21:46:31 +01:00
Franz Pletz
4d8dbb63d7
pythonPackages.libvirt: 2.5.0 -> 3.0.0 2017-01-22 13:01:03 +01:00
Franz Pletz
210f894c12
iptables: split out dev output 2017-01-22 13:01:01 +01:00
Charles Strahan
d298a961f1 Merge pull request #21416 from cstrahan/mesos-1.1.0
mesos: 1.0.1 -> 1.1.0
2017-01-21 19:05:18 -05:00
Franz Pletz
3c49d9788c
signing-party: 2.2 -> 2.5, install all tools 2017-01-21 20:46:04 +01:00
Franz Pletz
61caacbf47
linux: 4.1.36 -> 4.1.38 2017-01-21 20:41:38 +01:00
Franz Pletz
ce3b98d08b
linux: 3.18.45 -> 3.18.47 2017-01-21 20:41:36 +01:00
vbgl
664d1d6dc9 Merge pull request #21261 from vbgl/uutf-1.0.0
Eliom 6 and various OCaml package updates
2017-01-21 20:23:28 +01:00
Michael Raskin
46eecaf0d4 Merge pull request #21726 from rnhmjoj/palemoon
[WIP] palemoon: init at 27.0.3
2017-01-21 18:46:09 +00:00
Peter Simons
843de20898 Fix evaluation presumably broken in 754a9cf698 by @globin. 2017-01-21 18:28:13 +01:00
Robin Gloster
189f64d8e7
gnome3.20: fixup removal, mark termite as broken 2017-01-21 17:42:12 +01:00
Vincent Laporte
86b74fb76b alt-ergo: 0.99.1 -> 1.30 2017-01-21 13:44:41 +00:00
Ollie Charles
72a002f9d6 golden-cheetah: Switch to 3.4 stable 2017-01-21 12:26:30 +00:00
Jaka Hudoklin
4884fa4502 Merge pull request #20656 from vdemeester/docker_1_13
Update to docker 1.13.x
2017-01-21 12:19:06 +01:00
Vladimír Čunát
81d9893bcd
rpm-ostree: fix build by using older gperf for now 2017-01-21 09:20:02 +01:00
Daiderd Jordan
78c68f23d0 Merge pull request #21815 from deepfire/irony-server
irony-server:  init at irony version
2017-01-21 01:55:22 +01:00
Kosyrev Serge
7ceca3dbbc irony-server: init at 'same-version-irony-of-chosen-elpa` 2017-01-21 03:43:20 +03:00
Daiderd Jordan
66c0b9d292 Merge pull request #19361 from schneefux/gogs
gogs: init at v0.9.97
2017-01-20 20:47:38 +01:00
Carles Pagès
305e3e27b6 yafc: remove
Some things are broken and it's no longer maintained.
2017-01-20 16:55:30 +01:00
Vladimír Čunát
6b6553c768
Merge branch 'staging'
It contains security updates.  I somehow forgot to push this yesterday.
2017-01-20 16:33:59 +01:00
Franz Pletz
9b92a07843
treewide: use lib.maintainers for meta.maintainers 2017-01-20 15:44:28 +01:00
Robin Gloster
ea7dadcaf6
pythonPackages.Pweave: disable broken tests 2017-01-20 15:39:14 +01:00
Shea Levy
0fdef7d2f1 4.9 is the latest longterm kernel.
https://lkml.org/lkml/2017/1/19/339
2017-01-20 09:34:19 -05:00
Michael Raskin
c50361b91a Merge pull request #21997 from peterhoeg/f/diag
blockdiag: use version as part of name
2017-01-20 09:34:18 +00:00
Nikolay Amiantov
d75a3cfb29 Merge pull request #21995 from abbradar/opencl
Fix OpenCL support
2017-01-20 12:09:17 +03:00
Graham Christensen
cda11c958e
pythonPackages.pysaml2: patch against external XML entities (CVE-2016-10127) 2017-01-19 22:53:40 -05:00
Robin Gloster
7acadd6f9b
ardour{3,4}: remove due to build failures 2017-01-20 02:52:16 +01:00
Peter Hoeg
30597dd656 blockdiag: use version as part of name
All the other "diags" have the version as part of the name.
2017-01-20 09:15:34 +08:00
Nikolay Amiantov
1db8ab66e3 opencl-info: init at 2014-02-21 2017-01-20 03:37:51 +03:00
Nikolay Amiantov
5c65546725 opencl-clhpp: init at 2.0.10 2017-01-20 03:37:51 +03:00
Nikolay Amiantov
45c8c077ad beignet: 1.1.2 -> 1.2.1
Split unit tests to a separate package.
2017-01-20 03:37:51 +03:00
Nikolay Amiantov
10bae1a207 opencl-icd: remove, point to ocl-icd 2017-01-20 03:37:51 +03:00
schneefux
a7f25fe167 php: add embedded package 2017-01-19 22:47:10 +01:00
Graham Christensen
003ae42ae6 packet: init at 20161215-2b8f07a
Signed-off-by: Robin Gloster <mail@glob.in>
2017-01-19 22:17:30 +01:00
Bjørn Forsman
1b5d5e3913 nmap-graphical: rename from nmap_graphical
Align attrpath and pkgname. Add backwards compatibility alias.
2017-01-19 20:12:28 +01:00
Jörg Thalheim
6762884a9a
python27Packages.jabberbot: init at 0.16 2017-01-19 19:10:23 +01:00
Jörg Thalheim
1708d4da13
python27Packages.xmpppy: fix ssl socket api 2017-01-19 19:10:16 +01:00
Robin Gloster
24038e6385
mysql-workbench: rename from mysqlWorkbench, add alias
fixes #21226
2017-01-19 16:41:30 +01:00
Jörg Thalheim
805e6804b1 Merge pull request #21873 from Mic92/python-packages
Dependencies for realms-wiki
2017-01-19 12:23:30 +01:00
Michael Raskin
7f2769ff62 Merge pull request #21983 from jonmeredith/master
Add yubioath-desktop application and required pyscard module
2017-01-19 09:35:52 +00:00
Michael Raskin
553ef5d3aa Merge pull request #21975 from lsix/update_python_celery
Update python celery
2017-01-19 09:34:34 +00:00
Michael Raskin
90e7568bfc Merge pull request #21973 from nixy/init/hy
hy: init at 0.11.1
2017-01-19 09:32:09 +00:00
Jörg Thalheim
b502bba10b Merge pull request #21981 from erictapen/python27Packages.influxdb-update
python27Packages.influxdb: 0.1.12 -> 4.0.0
2017-01-19 09:25:43 +01:00
Vladimír Čunát
f4f885243e
treewide: switch more packages to older gperf
They wouldn't build otherwise.
2017-01-19 09:09:16 +01:00
Vincent Laporte
75cea1db58 ocamlPackages.fpath: init at 0.7.1
Fpath is an OCaml module for handling file system paths with POSIX and Windows conventions.

Homepage: http://erratique.ch/software/fpath
2017-01-19 05:51:49 +00:00
Jon Meredith
d9340971d9 Add yubioath-desktop application and required pyscard module to support it 2017-01-18 19:13:31 -08:00
Justin Humm
b635355554 python27Packages.influxdb: 0.1.12 -> 4.0.0
Updated, as the old package is not compatible with current InfluxDB versions.
Changed buildInputs as following:
* requests -> requests2 as it is newer
* added dateutil as it is needed
* added tytz as it is needed
* added six as it is needed
2017-01-19 02:52:42 +00:00
Daiderd Jordan
2b0ca8dc5d Merge pull request #21681 from matthewbauer/anki
Anki: Darwin support
2017-01-18 21:41:11 +01:00
Vincent Demeester
74d4d3e4f9
docker: 1.12.6 -> 1.13.0
- Update docker version to 1.13.0.
- Introduce now docker-proxy package (from libnetmork).
- Use overrideDerivation to set the correct version for docker.
- Update tini to make sure we can build it static.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-01-18 21:33:37 +01:00
Jörg Thalheim
17c457e47b
pythonPackages.twill: init at 0.9.1 2017-01-18 18:26:32 +01:00
Jörg Thalheim
3b44782026
pythonPackages.flask_wtf: init at 0.14.2 2017-01-18 18:26:31 +01:00
Jörg Thalheim
5da2caab63
pythonPackages.flask_testing: init at 0.6.1 2017-01-18 18:26:31 +01:00
Jörg Thalheim
b9e0da457a
pythonPackages.ghdiff: init at 0.4 2017-01-18 18:26:30 +01:00
Jörg Thalheim
f957ce45c4
pythonPackages.flask_oauthlib: init at 0.9.3 2017-01-18 18:26:30 +01:00
Jörg Thalheim
b3bef109c2
pythonPackages.flask-ldap-login: init at 0.3.0 2017-01-18 18:26:30 +01:00
Jörg Thalheim
c065c400e9
pythonPackages.flask_elastic: init at 0.2 2017-01-18 18:26:29 +01:00
Jörg Thalheim
0b3d711fc4
pythonPackages.flask_login: enable python3 tests 2017-01-18 18:26:29 +01:00
Jörg Thalheim
1094e948bf
pythonPackages.markdown2: 2.3.0 -> 2.3.1 2017-01-18 18:26:28 +01:00
Jörg Thalheim
1f5b7484a3
pythonPackages.gunicorn: 19.1.0 -> 19.3.0 2017-01-18 18:26:28 +01:00
Jörg Thalheim
bbe73c77c1
pythonPackages.dulwich: 0.14.0 -> 0.14.1 2017-01-18 18:26:28 +01:00
Jörg Thalheim
c6c5ed15ab
pythonPackages.requests_oauthlib: 0.4.1 -> 0.7.0 2017-01-18 18:26:27 +01:00
Jörg Thalheim
14a65c5ecd
pythonPackages.ldap: 2.4.19 -> 2.4.22 2017-01-18 18:26:27 +01:00
Jörg Thalheim
1f6ca0f37b
pythonPackages.bcrypt: 3.1.0 -> 3.1.2 2017-01-18 18:26:26 +01:00
Lancelot SIX
f715d3fd2c pythonPackages.channels: 1.0.1 -> 1.0.2 2017-01-18 17:07:45 +01:00
Lancelot SIX
c71087b345 pythonPackages.pytest_30: 3.0.4 -> 3.0.5 2017-01-18 16:53:31 +01:00
Lancelot SIX
cdf3b50917 pythonPackages.celery: 3.1.23 -> 4.0.2 2017-01-18 16:53:31 +01:00
Lancelot SIX
67a8210d6a pythonPackages.kombu: 3.0.35 -> 4.0.2 2017-01-18 16:53:27 +01:00
Lancelot SIX
0be9f1b3e5 pythonPackages.billiard: 3.3.0.23 -> 3.5.0.2 2017-01-18 16:52:45 +01:00
Lancelot SIX
a272ca2c2e pythonPackages.amqp: 1.4.9 -> 2.1.4 2017-01-18 16:52:07 +01:00
Vladimír Čunát
59e0cfb589
gperf: bring back 3.0.4 to fix systemd build
Systemd has fixed this on master, but I don't want to meddle with the
patch that doesn't apply cleanly on our version.
2017-01-18 16:45:52 +01:00
Vladimír Čunát
40003aa2ed
Merge branch 'master' into staging 2017-01-18 15:54:04 +01:00
Andrew R. M
b8acb928cc hy: init at 0.11.1
This is the hy language, a dialect of lisp designed to be closely
intergrated with python.
2017-01-18 09:32:59 -05:00
Lancelot SIX
ece1154382 pythonPackages.vine: init at 1.1.3 2017-01-18 15:25:12 +01:00
Lancelot SIX
04e4790033 pythonPackages.case: init at 1.5.2 2017-01-18 15:25:11 +01:00
Tuomas Tynkkynen
6ced9ee7a4 fsmon: init at 1.4 2017-01-18 16:18:25 +02:00
Jake Waksbaum
753b00b6c6 pythonPackages.neovim: 0.1.12 -> 0.1.13 2017-01-17 20:56:54 -05:00
Matthew Bauer
6c6db7b58b
portaudio: fix on Darwin 2017-01-17 19:49:18 -06:00
Matthew Bauer
5c09b223f9
pulseaudio: fix on Darwin 2017-01-17 19:49:17 -06:00
Vincent Laporte
1503c11c5d ocamlPackages.omd: init at 1.3.0
OMD is an extensible Markdown library and tool in OCaml.

Homepage: https://github.com/ocaml/omd
2017-01-17 20:37:20 +01:00
Lee Machin
3e86a0b496 Add rubocop linter for Ruby (#21934)
Use gemdir and pname as suggested by @zimbatm

Fix silly typo
2017-01-17 09:55:23 +00:00
Dan Peebles
f1a9bc356e lkl: init 2017-01-16 21:24:32 +00:00
Tristan Helmich
ef0f4e7092 couchpotato: init at 3.0.1 2017-01-16 12:54:43 +01:00
Michael Raskin
cd07d21a44 Merge pull request #21868 from hsenag/htmlunit-driver
selenium-server-standalone: restore htmlunit-driver support
2017-01-16 09:37:29 +00:00
Nicolas B. Pierron
f9da1fa957 Throw an error if NIXPKGS_OVERLAYS is invalid and improve documentation. 2017-01-16 01:17:33 +01:00
Nicolas B. Pierron
f5dfe78a1e Add overlays mechanism to Nixpkgs.
This patch add a new argument to Nixpkgs default expression named "overlays".

By default, the value of the argument is either taken from the environment variable `NIXPKGS_OVERLAYS`,
or from the directory `~/.nixpkgs/overlays/`.  If the environment variable does not name a valid directory
then this mechanism would fallback on the home directory.  If the home directory does not exists it will
fallback on an empty list of overlays.

The overlays directory should contain the list of extra Nixpkgs stages which would be used to extend the
content of Nixpkgs, with additional set of packages.  The overlays, i-e directory, files, symbolic links
are used in alphabetical order.

The simplest overlay which extends Nixpkgs with nothing looks like:

```nix
self: super: {
}
```

More refined overlays can use `super` as the basis for building new packages, and `self` as a way to query
the final result of the fix-point.

An example of overlay which extends Nixpkgs with a small set of packages can be found at:
  https://github.com/nbp/nixpkgs-mozilla/blob/nixpkgs-overlay/moz-overlay.nix

To use this file, checkout the repository and add a symbolic link to
the `moz-overlay.nix` file in `~/.nixpkgs/overlays` directory.
2017-01-16 01:17:33 +01:00
John Ericson
cef5131ea7 Merge pull request #21911 from Ericson2314/release-cross
release-cross: Expose sub-jobs of linux cross stdenv
2017-01-15 14:21:04 -05:00
John Ericson
a62ee8d45c release-cross: Expose sub-jobs of linux cross stdenv 2017-01-15 14:19:39 -05:00
Tuomas Tynkkynen
9c45e20823 dtc: Fix build after flex upgrade
http://hydra.nixos.org/build/46059338
2017-01-15 19:34:16 +02:00
Franz Pletz
8afb65ff66
libav_12: init at 12 2017-01-15 18:24:42 +01:00
Jörg Thalheim
122da3dc79 Merge pull request #21903 from matthiasbeyer/add-git-crecord
git-crecord: init at 20161216.0
2017-01-15 14:38:15 +01:00
Matthias Beyer
7adf2ff42e
git-crecord: init at 20161216.0 2017-01-15 14:23:59 +01:00
2chilled
936e2086e6 h2: init at 1.4.193 (#21893) 2017-01-15 14:01:07 +01:00
Daiderd Jordan
d6517b6e5e Merge pull request #21898 from matthewbauer/darwintools
DarwinTools: init at 1
2017-01-15 10:11:39 +01:00
Jörg Thalheim
e4c88f5c80 Merge pull request #21899 from johbo/add-tryton-client
tryton: init 4.2.1
2017-01-15 08:50:34 +01:00
Johannes Bornhold
37788f13b7 tryton: init at 4.2.1 2017-01-15 01:40:01 +01:00
John Ericson
94ad99e759 Merge pull request #21896 from Ericson2314/gawk
Two changes in preperation of cross cleanup
2017-01-14 17:58:22 -05:00
Daiderd Jordan
c391904b85 Merge pull request #21894 from johbo/darwin-pangomm
pangomm: Add ApplicationServices on darwin
2017-01-14 23:56:25 +01:00
Jörg Thalheim
97a6566348 Merge pull request #21892 from offlinehacker/pkgs/yarn/add
yarn: init at 0.18.1
2017-01-14 23:54:56 +01:00
Johannes Bornhold
8a7d373795 Darwin gtk quartz follow up (#21883)
* gtk2-x11: Add gtk2 configuration with X11 backend

After making quartz the default for darwin, some builds started to fail since
they only support gtk with the X11 backend.

* apvlv: Use gtk2-x11 on darwin

* gpicview: Use gtk2-x11 for darwin

* lxappearance: Use gtk2-x11 for darwin

* fontforge-gtk: Use gtk2-x11 for darwin

* gbdfed: Use gtk2-x11 for darwin
2017-01-14 22:53:56 +00:00
Jörg Thalheim
235da0d77b Merge pull request #21871 from Mic92/manul
manul: init at 2016-09-30
2017-01-14 22:57:30 +01:00
Jörg Thalheim
238a090b4f
gdm: init at 1.4 2017-01-14 22:56:12 +01:00
John Ericson
fa0a12e35d release-cross: Use nativeDrv rather than relying on default
The default will soon change
2017-01-14 16:39:43 -05:00
Jaka Hudoklin
bb0d0a366b yarn: init at 0.18.1 2017-01-14 20:49:57 +01:00