forked from mirrors/nixpkgs
f7e390e6d4
Related: -9fc5e7e473
-593e11fd94
-508ae42a0f
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`.
29 lines
715 B
Nix
29 lines
715 B
Nix
{ stdenv, fetchFromGitHub, SDL2, wxGTK } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sound-of-sorting";
|
|
version = "2017-12-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bingmann";
|
|
repo = "sound-of-sorting";
|
|
rev = "5884a357af5775fb57d89eb028d4bf150760db75";
|
|
sha256 = "01bpzn38cwn9zlydzvnfz9k7mxdnjnvgnbcpx7i4al8fha7x9lw8";
|
|
};
|
|
|
|
buildInputs =
|
|
[ wxGTK SDL2 ];
|
|
|
|
preConfigure = ''
|
|
export SDL_CONFIG=${SDL2.dev}/bin/sdl2-config
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Audibilization and Visualization of Sorting Algorithms";
|
|
homepage = "https://panthema.net/2013/sound-of-sorting/";
|
|
license = with licenses; gpl3;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|