about summary refs log tree commit diff
path: root/pkgs/tools/misc/wyrd
AgeCommit message (Collapse)AuthorFilesLines
2021-12-16ncurses: 6.2 -> 6.3Sergei Trofimovich1-2/+0
The biggest nixpkgs-specific change is addition of printf()-style attribute annotations for many ncurses APIs. -Werror=format-security now flags parameter inconsistencies and fails the build. The fixes are usually one-liners like adding "%s" format string for non-literals or just using `hardeningDisable [ "format" ];` for software where backporting or fixing is not practical. Drop -DNCURSES_INTERNALS=1 workaround required only for ncurses-6.2 and build-incompatible with ncurses-6.3.
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-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-2/+2
2019-12-31treewide: NIX_*_FLAGS -> stringRobin Gloster1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-03-08wyrd: fix buildVincent Laporte1-4/+7
2018-03-08wyrd: fix build error with ncurses-6.0-abi5-compatxeji1-0/+3
2015-07-23Fix wyrd to compile with ocaml 4.02Samuel Rivas1-2/+2
camlp4 is now a separate package instead of shipping within the ocaml package
2014-12-13Add the Wyrd Front-End for RemindPavan Rikhi1-0/+31