about summary refs log tree commit diff
path: root/pkgs/applications/office/wordgrinder
AgeCommit message (Collapse)AuthorFilesLines
2023-02-22treewide: move NIX_CFLAGS_COMPILE to the env attrsetArtturin1-1/+1
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
2021-01-16pkgs/applications: pkgconfig -> pkg-configBen Siraphob1-2/+2
2021-01-15pkgs/applications: stdenv.lib -> libBen Siraphob1-5/+5
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-24wordgrinder: 0.7.2 -> 0.8Luflosi1-3/+5
https://github.com/davidgiven/wordgrinder/releases/tag/0.8
2020-09-13wordgrinder: fix buildOlli Helenius1-0/+1
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-09-08treewide: remove redundant quotesvolth1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-04-26wordgrinder: Fix buildMatthias Beyer1-1/+5
First I tried to fix the build like this: > This fixes the build of the wordgrinder package by disabling the build > of "xwordgrinder", the non-curses frontend of wordgrinder. > > For re-enabling the build, this patch shall be reverted and then go on > from there. > > I opted for disabling the x frontend of this program because the whole > purpose of this is to use a curses writing program (at least for me). > It seems that hacking around the new build system in nixpkgs is a > non-trivial task and I wanted to get this package out of the door as > fast as possible because I already delayed the fix by a few days (or is > it weeks already), so this is the simple fix. > > If someone wants to have the X frontend again, I can invest more time at > some point. But then the almighty aszlig came around and told me how to do it right. So here we go, with a patch from me that is acutally from aszlig (see #60122). This fixes the build. Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: aszlig <aszlig@nix.build> Fixes: 6b2bd330fa ("wordgrinder: Fix sha256 hash") Fixes: 19a3abc1b8 ("wordgrinder: 0.7.1 -> 0.7.2") Merges: https://github.com/NixOS/nixpkgs/pull/60122 Cc: @devhell
2019-04-11wordgrinder: Fix sha256 hashaszlig1-1/+1
The hash used for fetchFromGitHub was on the archive itself, however fetchFromGitHub is actually a wrapper of fetchzip: hash mismatch in fixed-output derivation '...-source': wanted: sha256:1zqx3p9l22njni44ads3fyw3xh6807wmb5k1x2glg61z81cwc6sf got: sha256:08lnq5wmspfqdjmqm15gizcq0xr7mg4h62qhvwj63v0sd6ks1cal When using nix-prefetch-url without the --unpack argument, I get: 1zqx3p9l22njni44ads3fyw3xh6807wmb5k1x2glg61z81cwc6sf And with the --unpack argument: 08lnq5wmspfqdjmqm15gizcq0xr7mg4h62qhvwj63v0sd6ks1cal Just to be 100% sure the contents are the same, I also diffed the contents of the former tarball with the outputs of the unpacked dir and they're the same. I didn't actually test the package (which doesn't build right now anyway), but now at least the source checksum is fixed :-) Signed-off-by: aszlig <aszlig@nix.build> Cc: @matthiasbeyer
2019-04-08wordgrinder: 0.7.1 -> 0.7.2Matthias Beyer1-2/+2
2019-02-20Revert "Remove maintainership"Matthias Beyer1-1/+1
I'm baaaaack! This patch reverts my patch where I removed myself as maintainer because of my traveling. I'm back now and I want to maintain these packages again. This reverts commit ce1c1e3093b9652fb3a3cdc1472afbc8a84dee68.
2018-04-06Remove maintainershipMatthias Beyer1-1/+1
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2018-02-10wordgrinder: Fix darwin buildadisbladis1-4/+4
2018-01-05wordgrinder: 0.6 -> 0.7.1Victor Calvert1-5/+13
2017-11-03wordgrinder: init at 0.6Matthias Beyer1-0/+47