summary refs log tree commit diff
path: root/pkgs/misc/sound-of-sorting
AgeCommit message (Collapse)AuthorFilesLines
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-02treewide: remove some trailing whitespace to please ofborgPatrick Hilhorst1-1/+1
2020-10-02treewide: fix redirected urls (run 3)Patrick Hilhorst1-1/+1
Related: - 9fc5e7e473874762fdb1b49d17dcf703d48352c3 - 593e11fd944ce961ecf5425c3540df09e4f52265 - 508ae42a0f64c350036d722b84c2e2905bbc5418 Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
2020-04-14sound-of-sorting: 2015-07-21 -> 2017-12-23AndersonTorres1-11/+10
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-28treewide: remove redundant recvolth1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2017-03-06sound-of-sorting: 0.6.5 -> 20150721 (#23549)Anderson Torres1-10/+11
* sound-of-sorting: 0.6.5 -> 20150721 * sound-of-sorting: correct unstable version format
2014-10-01Sound of Sorting: New PackageAndersonTorres1-0/+28
Sound of Sorting is an array-sorting visual+sound demo program. It shows an array as a list of horizontal bars, and realizes a step-by-step sorting of it. Moreover, it colorizes and emits a "8-bit-game-like" sound throughout its execution. Closes #4341