Commit graph

691 commits

Author SHA1 Message Date
Vladimír Čunát 10cb065706
cacert: fix fetchurl invocation
It was breaking probably just the tarball job (difficult to localize).
https://hydra.nixos.org/build/140479925
2021-04-01 22:18:02 +02:00
github-actions[bot] 7c9222212f
Merge master into staging-next 2021-03-25 18:14:01 +00:00
Frederik Rietdijk 63540c9df8 libkkc-data: stay with python2 2021-03-25 12:40:55 +01:00
Frederik Rietdijk 9f9a1a01ab elliptic_curves: stay with python2
because its sage
2021-03-25 12:36:24 +01:00
Frederik Rietdijk 3e9d81498b conway_polynomials: use python2 2021-03-25 11:43:39 +01:00
Dmitry Kalinkin 11ae139333 cacert.certdata2pem: add a download mirror from ubuntu 2021-03-20 09:11:48 +01:00
Dmitry Kalinkin 62d332feaf cacert: refactor to put certdata2pem on tarballs.nixos.org
nix-instantiate --eval --json --strict ./maintainers/scripts/find-tarballs.nix --arg expr '(import ./. {}).cacert' 2>/dev/null | jq '.[].name' | grep cert
"certdata2pem.py"
2021-03-20 09:11:48 +01:00
Peter Simons a839c811a5
Merge pull request #116096 from NixOS/haskell-updates
Update Haskell package set to Stackage Nightly 2021-03-17 (plus other fixes)
2021-03-19 21:24:10 +01:00
Peter Simons 0f3acba0fd all-cabal-hashes: update to Hackage at 2021-03-19T20:01:05Z 2021-03-19 21:22:17 +01:00
Jan Tojnar 2445e9a681
Merge branch 'master' into staging-next 2021-03-18 19:24:39 +01:00
Alvar Penning b710d59295 spdx-license-list-data: 3.11 -> 3.12 2021-03-18 13:57:54 +01:00
Peter Simons 1fab990d47 Merge origin/master into haskell-updates. 2021-03-17 21:19:22 +01:00
github-actions[bot] 8fa4dca9b5
Merge master into staging-next 2021-03-15 00:40:27 +00:00
R. RyanTM 0af0c5c8e7 osinfo-db: 20210215 -> 20210312 2021-03-14 23:01:11 +01:00
Peter Simons e21a77518d all-cabal-hashes: update to Hackage at 2021-03-12T19:55:03Z 2021-03-12 21:43:44 +01:00
github-actions[bot] f9d4095295
Merge staging-next into staging 2021-03-07 00:41:13 +00:00
R. RyanTM f754c844d9 osinfo-db: 20210202 -> 20210215 2021-03-07 00:27:12 +01:00
Jörg Thalheim 63963400dc
iana-etc: 20200729 -> 20210225 2021-02-27 10:14:08 +01:00
WORLDofPEACE b884af7c1d
Merge pull request #114276 from worldofpeace/update-nixos-artwork
nixos-icons: 2017-03-16 -> 2021-02-24
2021-02-25 13:09:38 -05:00
WORLDofPEACE 8a89af81d1 nixos-icons: 2017-03-16 -> 2021-02-24
Adds a white variant of the nixos logo
2021-02-24 16:23:20 -05:00
Alexander Vieth a65208ca8e tzdata: use nativePrefix for zic-native
would not be able to run the install phase for a cross compile otherwise
2021-02-22 19:59:06 -05:00
Ben Siraphob 223f25cf4a treewide: add targetPrefix to hardcoded references to CC=cc 2021-02-20 01:01:46 +07:00
Peter Simons 3ae580be68 all-cabal-hashes: update to Hackage at 2021-02-12T08:19:51Z 2021-02-12 20:35:22 +01:00
Matt Jibson 0cf1f67aa1 ddccontrol-db: 20180908 -> 20201221 2021-02-11 10:58:22 +01:00
R. RyanTM 8e364d2684 osinfo-db: 20201218 -> 20210202 2021-02-05 19:18:37 +01:00
R. RyanTM c06068bc1e osinfo-db: 20201119 -> 20201218 2021-01-30 23:19:51 +00:00
Peter Simons 34a21d6f21 all-cabal-hashes: update to Hackage at 2021-01-29T18:57:29Z 2021-01-29 21:25:23 +01:00
Pavol Rusnak a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Peter Simons 412a9e7d7c all-cabal-hashes: update to Hackage at 2021-01-22T18:56:49Z 2021-01-22 20:43:02 +01:00
Ben Siraphob ca7f39f987 pkgs/data, pkgs/games: [sS]tdenv.*lib -> lib 2021-01-17 20:59:16 +07:00
Ben Siraphob d13840759c pkgs/data: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
Austin Seipp ca27105b04
Revert "Merge pull request #105709 from CajuM/symbiflow"
This reverts commit 02828f91f1, reversing
changes made to f0a7fce6ee.
2021-01-15 10:13:27 -06:00
Ben Siraphob 4eb185bd6a pkgs/data: stdenv.lib -> lib 2021-01-15 14:29:18 +07:00
Dmitry Kalinkin 02828f91f1
Merge pull request #105709 from CajuM/symbiflow
Add Symbiflow + prjxray for OSS Xilinx FPGA development
2021-01-11 18:49:31 -05:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Câju Mihai-Drosi ccdf7431bb symbiflow-arch-defs: init at 20200914-111752-g05d68df0 2021-01-10 10:01:48 +02:00
Câju Mihai-Drosi 7d9c736824 prjxray-db: init at 0.0-0232-g303a61d 2021-01-10 09:32:26 +02:00
github-actions[bot] e251591528
Merge master into staging-next 2021-01-09 01:00:25 +00:00
Peter Simons 3cb9768557 all-cabal-hashes: update to Hackage at 2021-01-07T20:56:37Z 2021-01-08 21:38:20 +01:00
Ben Siraphob b04fc593e7 treewide: cmake buildInputs to nativeBuildInputs, minor cleanups 2021-01-01 11:52:33 +07:00
ajs124 4e70a418c7 tzdata: 2020c -> 2020f 2020-12-29 21:41:01 +01:00
Peter Simons d8d2e94f97 all-cabal-hashes: update to Hackage at 2020-12-24T01:16:25Z 2020-12-25 20:42:36 +01:00
github-actions[bot] 6904262415
Merge master into staging-next 2020-12-19 00:42:26 +00:00
Peter Simons 365fc52cd1 all-cabal-hashes: update to Hackage at 2020-12-18T01:03:03Z 2020-12-18 20:49:03 +01:00
ajs124 11d6355308 cacert: 3.57 -> 3.60 2020-12-17 07:31:34 +01:00
Mario Rodas 9de26d2610
Merge pull request #106476 from r-ryantm/auto-update/osinfo-db
osinfo-db: 20201015 -> 20201119
2020-12-13 20:56:07 -05:00
R. RyanTM cc6e51138a osinfo-db: 20201015 -> 20201119 2020-12-09 19:24:27 +00:00
github-actions[bot] db90e75ade
Merge staging-next into staging 2020-12-08 00:39:07 +00:00
Daniël de Kok 18a5777c77
fedora-backgrounds: use stdenvNoCC (#106149)
No need for a C build environment when copying some backgrounds.
2020-12-07 13:49:58 -05:00
github-actions[bot] acbe77678e
Merge staging-next into staging 2020-12-05 00:38:04 +00:00