about summary refs log tree commit diff
path: root/pkgs/applications/misc/marktext
AgeCommit message (Collapse)AuthorFilesLines
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt1-1/+1
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-05-15marktext: update homepageDonovan Glover1-1/+1
The old domain is no longer being used.
2024-05-13treewide: fix use of `extraPkgs` in AppImagesMartino Fontana1-4/+1
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;` This caused some packages to be listed twice. Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`). Remove inclusions of `bash`, since `bashInteractive` is already present by default.
2024-05-13treewide: remove `multiArch=false` from `buildFHSEnv` usagesMartino Fontana1-1/+0
Cleanup after the work of #240860. Also preventing new packages to copy from outdated ones.
2024-04-24treewide: unbreak appimageTools.wrapType2 buildsPeder Bergebakken Sundt1-3/+0
`appimageTools.wrapType2` no longer creates a binary `$out/bin/${name}` if `pname` and `version` is provided. Derivations that have worked around this behavior with a `mv $out/bin/{${name},${pname}}` broke as a result. This should fix most instances. contex: #271071
2023-07-01tree-wide: use new multiArch buildFHSEnv argumentAtemu1-1/+1
This is much more direct and sensible than setting a function null
2022-05-15treewide: remove unecessary XDG_DATA_DIRS from appimage wrapType2Artturin1-7/+1
they're unnecessary since https://github.com/NixOS/nixpkgs/pull/161739/files which links the schemas to their correct fhs locations and adds gsettings-desktop-schemas and hicolor-icon-theme to appimage fhs
2022-05-01marktext: fix nix-env version parsingSandro Jäckel1-6/+5
2022-03-08marktext: 0.16.3 -> 0.17.1Eduard Bachmakov1-3/+3
Add myself to maintainers.
2021-12-28marktext: fix meta.mainProgramMatthieu Coudron1-0/+1
2021-11-13marktext: 0.16.2 -> 0.16.3Eduard Bachmakov1-6/+19
Add .desktop file, icons in the process.
2021-03-17treewide: xlibs -> xorgSamuel Gräfenstein1-1/+1
Fix building with `config.allowAliases = false;`.
2020-10-17treewide: remove periods from end of package descriptionsBen Siraphob1-1/+1
2020-07-06marktext: 0.16.1 -> 0.16.2Niklas Hambüchen1-2/+2
2020-07-06marktext: 0.16.0-rc.2 -> 0.16.1.Niklas Hambüchen1-3/+9
The upgrade apparently made it necessary to also add `XDG_DATA_DIRS` to fix the crash mentioned in the added comment. I copied this solution from: `pkgs/applications/misc/devdocs-desktop/default.nix`
2020-01-14marktext: init at v0.16.0-rc.2Niklas Hambüchen1-0/+35
This uses the .AppImage binary release, until we have a real source package (see https://github.com/marktext/marktext/issues/1647). I used the `notable` package as a template.