Commit Graph

31 Commits

Author SHA1 Message Date
Ryan Omasta
49769d8595
xournalpp: format using nixfmt-rfc-style 2024-10-20 14:39:37 -06:00
Ryan Omasta
562ccf6814
xournalpp: 1.2.3 -> 1.2.4 2024-10-20 14:39:01 -06:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Fabian Freihube
df6e2c4311 xournalpp: fix missing icons that prevent start 2024-07-26 20:10:46 +02:00
Weijia Wang
7f45fee52a Merge branch 'master' into staging-next 2024-04-28 04:02:14 +02:00
Andrew Dunham
ca9932abe5 maintainers: remove andrew-d as a maintainer
I am deeply saddened at the fact that I need to do this. I have no
interest in re-litigating everything that has happened over the past
weeks and months, but I want to make my position(s) extremely clear:

The thought of any of my work contributing to someone's death by drone
makes me feel physically ill.

Recent communications from senior members of the NixOS community have
made it clear that leadership is unaware or uninterested in the basics
of how to run and moderate a community in a way that is resilient to bad
actors. The recent post by @edolstra is tone-deaf and gives me no
confidence that the Nix/NixOS community is a place that I want to remain
involved in going forward. I am thus choosing to remove myself from such
a community.

I also hereby resign from the ACME team.

See also: #307033

Signed-off-by: Andrew Dunham <andrew@du.nham.ca>
2024-04-27 14:05:07 -04:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Nikolay Korotkiy
ec30688223 xournalpp: 1.2.2 → 1.2.3 2024-03-10 10:47:48 +01:00
Yureka
6b65846c30
xournalpp: build on darwin (#261111) 2023-10-14 23:22:45 +02:00
clerie
49a4ded223
xournalpp: 1.2.1 -> 1.2.2 (#261067) 2023-10-14 22:50:35 +02:00
alyaeanyx
54a6844d59 xournalpp: 1.2.0 -> 1.2.1 2023-08-24 22:03:29 +02:00
alyaeanyx
8aa5c81408 xournalpp: 1.1.3 -> 1.2.0 2023-07-31 17:50:02 +02:00
alyaeanyx
4d40b87e35 xournalpp: 1.1.2 -> 1.1.3 2022-11-27 21:45:45 +01:00
Jan Tojnar
457f28f6f8 Merge branch 'master' into staging-next
; Conflicts:
;	pkgs/development/tools/codespell/default.nix

codespell 2.2.2 switched to pyproject & setuptools_scm:
https://github.com/codespell-project/codespell/pull/2523
2022-10-19 05:24:28 +02:00
alyaeanyx
a5366c287b xournalpp: 1.1.1 -> 1.1.2 2022-10-17 16:51:13 +02:00
Artturin
f4ea1208ec treewide: *Flags convert to list from str
*Flags implies a list

slightly relevant:
> stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172

the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so
it's not a breaking change
2022-10-10 15:30:59 +03:00
Nikolay Korotkiy
bb0bae46c6
xournalpp: 1.1.0 → 1.1.1 (#159902) 2022-02-14 17:39:13 +00:00
Nikolay Korotkiy
8eff44934a
xournalpp: 1.0.20 → 1.1.0 2021-07-24 18:00:41 +03:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07: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
Nikolay Korotkiy
a5ec4f99db
xournalpp: 1.0.19 → 1.0.20 2020-12-17 22:12:45 +03:00
Nikolay Korotkiy
d2a28d3b38 xournalpp: 1.0.18 -> 1.0.19 2020-10-25 19:34:20 +01:00
Nikolay Korotkiy
42d290316c xournalpp: 1.0.17 -> 1.0.18 2020-04-21 19:45:02 +02:00
Nikolay Korotkiy
eeaa67de86
xournalpp: 1.0.16 -> 1.0.17 2020-02-03 20:32:54 +03:00
Nikolay Korotkiy
6b68bf931f
xournalpp: 1.0.15 -> 1.0.16 2019-11-27 21:47:45 +03:00
Nikolay Korotkiy
2f6f55d8ee
xournalpp: 1.0.12 -> 1.0.15 2019-10-16 10:30:31 +03:00
worldofpeace
b0c2aea20b
treewide: drop adding hicolor-icon-theme where possible
This was either for the setup-hook to remove caches or added
even though the respective icon theme propagated it.
2019-09-18 22:47:26 +02:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Vladimír Čunát
bc4e718db6
xournalpp nitpick: plugins do work now (reportedly) 2019-06-23 10:37:15 +02:00
Will Dietz
8ea66b0151
xournalpp: 1.0.8 -> 1.0.12
* revisit plugin support, drop old patch
* use lua5_3 as it seems to expect (require)
* disable format hardening, fix build
2019-05-30 22:09:22 -05:00
Andrew Dunham
4cf0343b42 xournalpp: init at 1.0.8 2019-03-04 23:46:36 -08:00