about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/games/gnome-robots/default.nix
AgeCommit message (Collapse)AuthorFilesLines
2021-05-08gnome: rename from gnome3Jan Tojnar1-73/+0
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
2021-05-05gnome3.gnome-robots: 3.38.0 → 40.0Jan Tojnar1-14/+49
2021-01-16pkgs/desktops: pkgconfig -> pkg-configBen Siraphob1-2/+2
2021-01-16treewide: stdenv.lib -> libBen Siraphob1-1/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
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
2020-10-24gnome3.gnome-robots: 3.36.1 -> 3.38.0Piotr Bogdan1-2/+2
2020-04-13Merge branch 'master' into staging-nextJan Tojnar1-1/+1
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-04-10Merge branch 'master' into staging-nextJan Tojnar1-2/+2
2020-04-09gnome3.gnome-robots: 3.36.0 -> 3.36.1Tor Hedin Brønner1-2/+2
2020-04-01tree-wide: Switch from gnome3.maintainers to lib.teams.gnomeJan Tojnar1-1/+1
2020-03-24gnome3.gnome-robots: 3.34.1 -> 3.36.0Tor Hedin Brønner1-2/+2
2020-01-07gnome3.gnome-robots: 3.34.0 -> 3.34.1 (#77095)R. RyanTM1-2/+2
2019-10-03Merge branch 'master' into staging-nextJan Tojnar1-4/+4
2019-09-30gnome3.gnome-robots: 3.32.0 → 3.34.0Tor Hedin Brønner1-4/+4
2019-09-18treewide: drop adding hicolor-icon-theme where possibleworldofpeace1-2/+1
This was either for the setup-hook to remove caches or added even though the respective icon theme propagated it.
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-2/+2
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-04-05gnome3.gnome-robots: 3.22.3 -> 3.32.0Tor Hedin Brønner1-7/+15
2019-02-14gnome3: stop using aliasesJan Tojnar1-1/+1
2018-10-05gnome3: remove versionBranch attributeJan Tojnar1-1/+1
Standard library now contains stdenv.lib.versions.majorMinor, which does the same.
2018-07-21treewide: fix build with disallowed aliases (#43872)volth1-2/+2
fixes build with disallowed aliases
2018-03-22gnome3: automated updateJan Tojnar1-2/+2
2018-03-01gnome3: move src.nix into default.nix automaticallyJan Tojnar1-1/+11
2018-02-25tree-wide: autorename gnome packages to use dashesJan Tojnar1-2/+2
2017-09-28Merge remote-tracking branch 'upstream/staging' into deps-reorgJohn Ericson1-0/+21
2017-09-24gnome3: only maintain single GNOME 3 package set (#29397)Jan Tojnar1-0/+20
* gnome3: only maintain single GNOME 3 package set GNOME 3 was split into 3.10 and 3.12 in #2694. Unfortunately, we barely have the resources to update a single version of GNOME. Maintaining multiple versions just does not make sense. Additionally, it makes viewing history using most Git tools bothersome. This commit renames `pkgs/desktops/gnome-3/3.24` to `pkgs/desktops/gnome-3`, removes the config variable for choosing packageset (`environment.gnome3.packageSet`), updates the hint in maintainer script, and removes the `gnome3_24` derivation from `all-packages.nix`. Closes: #29329 * maintainers/scripts/gnome: Use fixed GNOME 3 directory Since we now allow only a single GNOME 3 package set, specifying the working directory is not necessary. This commit sets the directory to `pkgs/desktops/gnome-3`.