about summary refs log tree commit diff
path: root/maintainers
AgeCommit message (Collapse)AuthorFilesLines
2015-03-04Travis: disable tarball creating check, because travis can't handle itGeorges Dubus1-2/+2
2015-02-17update-channel-branches: fix to work with posix /bin/shBenjamin Staffin1-12/+13
Should now work equally well with bash (as on NixOS) and dash (on various other distributions). The only truly required change was on line 10: "function" is a superfluous keyword that's not present in posix sh. Change-Id: If917499b2e24c0d039e8c61208227b90c9fc5c0d
2015-01-19Merge branch 'master' into staging.Peter Simons2-2/+3
2015-01-18Update vanity to add more special characters.Michael Raskin2-2/+3
2015-01-14rename occurrences of cc.gcc to cc.ccEric Seidel1-1/+1
2015-01-04Travis: check tarball creation even for pull requestsGeorges Dubus1-2/+3
This will help us catch PR that break the tarball creation, for example by breaking evaluation on other platforms.
2014-12-26Change occurrences of gcc to the more general ccJohn Wiegley1-1/+1
This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
2014-12-18update-channel-branches.sh: Add verbosity to improve the user experience, ↵Nicolas B. Pierron1-18/+70
and update NixOS documentation.
2014-12-18Add other source of channels, and distinguish between local and remote channels.Nicolas Pierron1-4/+45
2014-12-17Add a script to add git branches for each channel.Nicolas Pierron1-0/+18
2014-12-14http://nixos.org -> https://nixos.orgDomen Kožar1-1/+1
(cherry picked from commit 78bb17dd22e4da4e3810fbc78185d73bb25ea73e) Signed-off-by: Domen Kožar <domen@dev.si>
2014-11-25Fix various Perl packagesEelco Dolstra2-3/+3
Perl 5.20 removed some modules, in particular Module::Pluggable. So now other modules need to get it from CPAN. http://hydra.nixos.org/build/17450281
2014-11-08move dockerfile to subdirectoryAristid Breitkreuz2-0/+26
2014-11-04Improve escaping (process backtick) and remove trailing spacesMichael Raskin1-18/+18
2014-10-31Make travis use "nox-review pr"Georges Dubus1-3/+1
This should put an end to all the false rebuilds reported by travis.
2014-10-15travis build: oopswmertens1-1/+5
Evaluation is too long - shouldn't have removed /dev/nulling I wish I had a travis test environment :sad:
2014-10-15travis build: Revert silly ideawmertens1-6/+3
nox-review should review against master, it's travis that should check out a hydra-available master commit to set the PR on. Perhaps we could rebase the current HEAD on the hydra-built commitish instead?
2014-10-15Travis build: source environment before buildwmertens1-0/+2
:poop:
2014-10-15Travis: Make it work with non-PRWout Mertens1-1/+1
2014-10-15Travis: chop build in install and build phasesWout Mertens1-23/+27
This allows us to see how long install takes. Also, build from hydra binaries as much as possible.
2014-10-14travis build: Silence gitwmertens1-1/+1
Last one I promise :grin:
2014-10-14travis build: More silencewmertens1-8/+9
2014-10-14travis build: Make curl silent (but report errors)wmertens1-0/+2
2014-10-12Update vanity counter. Now with GitHub username supportMichael Raskin2-2/+62
2014-10-12Improve name quoting to correctly handle underscoreMichael Raskin1-2/+2
2014-10-07Made the travis build check the metadataGeorges Dubus1-0/+3
2014-10-07Fix local filename in vanity counterMichael Raskin1-1/+1
2014-10-05make vanity script less spammyAristid Breitkreuz1-1/+1
2014-09-30A small vanity counter for finding top-grossing committersMichael Raskin2-0/+68
2014-09-23Fixes to the travis scriptGeorges Dubus1-3/+6
- Build 4 jobs at a time (might help with the timeout) - Be quiet with pip (should make the output more readable)
2014-09-23travis-nox-review: build tarball job as evaluation testDomen Kožar1-1/+1
2014-09-21Review PR in travis with nox-reviewGeorges Dubus1-0/+26
2014-07-30Remove broken scriptEelco Dolstra1-146/+0
2014-05-22copy-tarballs.pl: Create base-32 symlinksEelco Dolstra1-0/+3
2014-05-01Remove mysterious lineEelco Dolstra1-1/+0
2014-03-31nixpkgs-lint: TweakEelco Dolstra1-2/+1
2014-02-19Fix updating of the tarball mirrorEelco Dolstra4-72/+140
2013-10-10Fix references to pkgs/libEelco Dolstra1-1/+1
2013-10-06Make eval-release.nix less pickyEelco Dolstra1-7/+8
It now only checks that each derivation's drvPath attribute evaluates. Previously it checked everything (via toXML) but that causes derivations with dubious passthru attribute to fail (see commit 70fee5da112b8a0093d59ac16cdead4d0a72f357).
2013-10-01Move some old docsEelco Dolstra2-345/+0
2013-10-01Remove obsolete doc fileEelco Dolstra1-27/+0
2013-09-07nixpkgs-lint: add check for meta.platforms attributeBjørn Forsman1-0/+8
2013-08-11Fix a few typosIvan Kozik1-3/+3
2013-07-30nixpkgs-lint: Warn against capitalised package names and missing versionsEelco Dolstra1-1/+19
2013-07-30nixpkgs-lint: Fix priority checkEelco Dolstra1-2/+2
2013-07-30nixpkgs-lint: Add support for filtering by maintainerEelco Dolstra1-11/+43
For instance, you can now say "nixpkgs-lint -m alice" to show only packages maintained by Alice. Also added command-line parsing.
2013-07-25Add nixpkgs-lintEelco Dolstra2-0/+137
This is a simple tool to scan Nixpkgs for violations of the packaging guidelines, such as multiple packages with the same name, packages that lack a description or license, and so on. To use: $ nix-env -i nixpkgs-lint $ cd .../nixpkgs $ nixpkgs-lint Current statistics: Number of packages: 8666 Number of missing maintainers: 3711 Number of missing licenses: 6159 Number of missing descriptions: 1337 Number of bad descriptions: 633 Number of name collisions: 277
2013-07-16nix-generate-from-cpan: Handle META.jsonEelco Dolstra1-10/+18
Fixes #761.
2013-06-16nix-generate-from-cpan: Hack to handle non-UTF-8 META.yml filesEelco Dolstra2-3/+9
2013-06-13Rewrite the CPAN generator to PerlEelco Dolstra3-120/+184
Also: - It's now installable by doing "nix-env -i nix-generate-from-cpan". - It maps dependencies to the correct attribute (e.g. HTML::HeadParser is mapped to HTMLParser). - It automatically selects buildPerlPackage or buildPerlModule. - It's documented in the manual.