Files
nix/tests
Eelco Dolstra 30ccf4e52d Turn flake inputs into an attrset
Instead of a list, inputs are now an attrset like

  inputs = {
    nixpkgs.uri = github:NixOS/nixpkgs;
  };

If 'uri' is omitted, than the flake is a lookup in the flake registry, e.g.

  inputs = {
    nixpkgs = {};
  };

but in that case, you can also just omit the input altogether and
specify it as an argument to the 'outputs' function, as in

  outputs = { self, nixpkgs }: ...

This also gets rid of 'nonFlakeInputs', which are now just a special
kind of input that have a 'flake = false' attribute, e.g.

  inputs = {
    someRepo = {
      uri = github:example/repo;
      flake = false;
    };
  };
2019-08-30 16:27:51 +02:00
..
2019-06-24 17:09:09 +02:00
2018-05-30 13:28:01 +02:00
2018-08-06 14:06:54 +02:00
2017-05-02 15:46:10 +02:00
2014-08-21 21:50:19 +02:00
2019-05-07 23:32:09 +02:00
2019-08-02 10:48:15 -04:00
2016-08-10 18:05:35 +02:00
2018-02-13 14:26:19 +00:00
2019-05-26 15:59:50 +02:00
2014-08-21 21:50:19 +02:00
2018-02-03 10:08:05 +01:00
2019-08-30 16:27:51 +02:00
2014-08-21 21:50:19 +02:00
2016-09-12 13:40:07 +02:00
2019-03-10 01:50:33 +01:00
2019-06-11 21:46:46 +02:00
2006-07-21 13:21:43 +00:00
2018-12-13 14:30:52 +01:00
2019-03-04 18:27:45 +08:00
2019-07-25 09:44:01 -04:00
2014-08-21 21:50:19 +02:00
2018-02-13 14:26:19 +00:00
2017-10-02 23:45:27 -04:00
2018-02-08 13:46:23 +01:00
2018-01-16 19:23:18 +01:00
2016-08-10 18:05:35 +02:00
2016-08-10 18:05:35 +02:00
2018-01-16 19:23:18 +01:00
2017-11-20 18:36:36 +01:00
2018-02-25 16:40:05 -06:00
2019-04-08 16:11:36 +02:00
2016-04-11 16:20:15 +02:00
2007-08-13 13:15:02 +00:00
2016-10-19 15:19:38 +02:00
2016-09-08 18:22:28 +02:00
2019-07-02 11:18:36 -04:00
2012-12-04 14:47:50 +01:00
2012-12-04 14:47:50 +01:00
2018-02-08 15:25:03 +01:00