Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a9359f33b0c7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ea46c3a51bb2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 15, 2020

  1. Copy the full SHA
    ab2a835 View commit details
  2. Merge pull request #84345 from AndersonTorres/update-sound-of-sorting

    sound-of-sorting: 2015-07-21 -> 2017-12-23
    AndersonTorres authored Apr 15, 2020
    Copy the full SHA
    ea46c3a View commit details
Showing with 10 additions and 11 deletions.
  1. +10 −11 pkgs/misc/sound-of-sorting/default.nix
21 changes: 10 additions & 11 deletions pkgs/misc/sound-of-sorting/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
{ stdenv, fetchgit
, SDL2, wxGTK }:
{ stdenv, fetchFromGitHub, SDL2, wxGTK } :

stdenv.mkDerivation {
stdenv.mkDerivation rec {

pname = "sound-of-sorting";
version = "unstable-2015-07-21";
version = "2017-12-23";

src = fetchgit {
url = "https://github.com/bingmann/sound-of-sorting.git";
rev = "05db428c796a7006d63efdbe314f976e0aa881d6";
sha256 = "0m2f1dym3hcar7784sjzkbf940b28r02ajhkjgyyw7715psifb8l";
fetchSubmodules = true;
src = fetchFromGitHub {
owner = "bingmann";
repo = "sound-of-sorting";
rev = "5884a357af5775fb57d89eb028d4bf150760db75";
sha256 = "01bpzn38cwn9zlydzvnfz9k7mxdnjnvgnbcpx7i4al8fha7x9lw8";
};

buildInputs = with stdenv.lib;
buildInputs =
[ wxGTK SDL2 ];

preConfigure = ''
export SDL_CONFIG=${SDL2.dev}/bin/sdl2-config
'';

meta = with stdenv.lib;{
meta = with stdenv.lib; {
description = "Audibilization and Visualization of Sorting Algorithms";
homepage = "http://panthema.net/2013/sound-of-sorting/";
license = with licenses; gpl3;