Commit Graph

45 Commits

Author SHA1 Message Date
kilianar
2d430021f1 portfolio: 0.60.1 -> 0.60.2
https://github.com/buchen/portfolio/releases/tag/0.60.2
2023-01-11 23:43:41 +01:00
kilianar
55fec28232 portfolio: 0.60.0 -> 0.60.1
https://github.com/buchen/portfolio/releases/tag/0.60.1
2022-12-29 23:13:13 +01:00
kilianar
1336dec317 portfolio: 0.59.5 -> 0.60.0
https://github.com/buchen/portfolio/releases/tag/0.60.0
2022-12-18 22:09:32 +01:00
kilianar
1cca42b6ad portfolio: 0.59.4 -> 0.59.5
https://github.com/buchen/portfolio/releases/tag/0.59.5
2022-12-04 18:59:12 +01:00
Shawn8901
1befba0d66
portfolio: add update script and make it nix-run-able (#199904) 2022-11-28 23:06:07 +01:00
R. Ryantm
6fa4fa6508 portfolio: 0.59.3 -> 0.59.4 2022-11-23 21:31:34 +08:00
R. Ryantm
c479fab920 portfolio: 0.59.2 -> 0.59.3 2022-11-08 08:37:14 +00:00
R. Ryantm
6ceaf4b115 portfolio: 0.59.1 -> 0.59.2 2022-10-09 19:17:26 +00:00
kilianar
994a2f0d4b portfolio: 0.59.0 -> 0.59.1
https://github.com/buchen/portfolio/releases/tag/0.59.1
2022-08-23 22:15:01 +02:00
kilianar
bf3e5034bb portfolio: 0.58.5 -> 0.59.0
https://github.com/buchen/portfolio/releases/tag/0.59.0
2022-07-17 22:59:41 +02:00
Martin Weinelt
e844b3a49a
Merge pull request #178414 from kilianar/portfolio 2022-06-25 12:25:27 +02:00
Robert Scott
466c2e342a treewide/applications: add sourceType binaryNativeCode for many packages 2022-06-23 18:38:19 +01:00
kilianar
5fc4842103 portfolio: 0.58.4 -> 0.58.5
- [Release notes](https://github.com/buchen/portfolio/releases/tag/0.58.5)
- [Commits](https://github.com/buchen/portfolio/compare/0.58.4...0.58.5)
2022-06-21 10:15:58 +02:00
kilianar
8899b2c874 portfolio: 0.58.3 -> 0.58.4
https://github.com/buchen/portfolio/releases/tag/0.58.4
2022-06-14 10:46:22 +02:00
Felix Schröter
4c6448bbe6
portfolio: 0.57.2 -> 0.58.3 2022-05-31 23:34:13 +02:00
Artturi
7896b0526b
Merge pull request #169224 from Shawn8901/update_portfolio_0_57_2
portfolio: 0.57.1 -> 0.57.2
2022-05-05 20:39:03 +03:00
Shawn8901
82060bee0b portfolio: 0.57.1 -> 0.57.2 2022-04-18 20:45:04 +02:00
Shawn8901
2bc6afceaf portfolio: adds shawn8901 as maintainer 2022-04-13 17:06:27 +02:00
Shawn8901
8b5c9741f9 portfolio: 0.56.5 -> 0.57.1 2022-04-11 19:54:48 +02:00
K900
cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00
R. Ryantm
b77e49c802 portfolio: 0.56.2 -> 0.56.5 2022-02-13 07:23:15 +00:00
R. Ryantm
9012eac785 portfolio: 0.55.0 -> 0.56.2 2021-12-09 20:09:07 -08:00
André Silva
bcae9bb64f
portfolio: 0.54.2 -> 0.55.0 2021-10-08 12:59:23 +01:00
Ilan Joselevich
6d9e4ada12 portfolio: 0.54.1 -> 0.54.2 2021-08-15 11:06:02 +03:00
Felix Tenley
cd17e5e6d8
portfolio: 0.53.1 -> 0.54.1 2021-07-26 20:39:40 +02:00
Felix Tenley
9dffc81791
portfolio: 0.52.0 -> 0.53.1 2021-06-17 11:31:46 +02:00
Moritz Scheuren
1e0bf533d0 portfolio: 0.51.2 -> 0.52.0 2021-04-18 23:07:42 +02:00
R. RyanTM
82c9b2cbf8 portfolio: 0.51.1 -> 0.51.2 2021-03-16 22:06:34 +00:00
R. RyanTM
6cbb086aca portfolio: 0.50.4 -> 0.51.1 2021-03-09 04:16:08 +00:00
R. RyanTM
28816d8ccb portfolio: 0.50.3 -> 0.50.4 2021-02-13 06:49:51 +00:00
R. RyanTM
c41803a9fb portfolio: 0.50.2 -> 0.50.3 2021-01-31 01:03:08 +00:00
R. RyanTM
5388f5bb7a portfolio: 0.50.0 -> 0.50.2 2021-01-20 22:03:38 +00:00
Ben Siraphob
108bdac3d9 pkgs/applications: stdenv.lib -> lib 2021-01-15 14:24:03 +07:00
Sandro
d3c91b35cb
Merge pull request #108976 from oyren/portfolio-0.50.0
portfolio: 0.49.3 -> 0.50.0
2021-01-11 17:34:58 +01: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
Moritz Scheuren
68a9d3f345 portfolio: 0.49.3 -> 0.50.0 2021-01-10 21:55:56 +01:00
Moritz Scheuren
fc0a07c8a3 portfolio: 0.49.2 -> 0.49.3 2020-11-29 19:45:30 +01:00
Moritz Scheuren
11114dac10 portfolio: 0.49.0 -> 0.49.2 2020-11-11 21:26:07 +08:00
Moritz Scheuren
8a26bfb4a1 portfolio: 0.48.1 -> 0.49.0 2020-10-26 11:08:17 +01:00
Ben Siraphob
683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
Moritz Scheuren
43afce40d6 portfolio: 0.48.0 -> 0.48.1 2020-09-02 14:27:43 -07:00
Moritz Scheuren
db7832d0e5 portfolio: 0.47.0 -> 0.48.0 2020-09-01 11:12:01 +02:00
Moritz Scheuren
62f269b4ac portfolio: 0.46.6 -> 0.47.0 2020-07-25 16:31:54 +02:00
Moritz Scheuren
c52af984c2 portfolio: 0.46.3 -> 0.46.6 2020-07-06 16:02:20 +02:00
Enno Lohmeier
beaed5b544 portfolio: init at 0.46.3 2020-05-16 19:45:04 +02:00