sound-of-sorting: 2015-07-21 -> 2017-12-23
This commit is contained in:
parent
f5b4c91be5
commit
ab2a8350bc
@ -1,26 +1,25 @@
|
|||||||
{ stdenv, fetchgit
|
{ stdenv, fetchFromGitHub, SDL2, wxGTK } :
|
||||||
, SDL2, wxGTK }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "sound-of-sorting";
|
pname = "sound-of-sorting";
|
||||||
version = "unstable-2015-07-21";
|
version = "2017-12-23";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/bingmann/sound-of-sorting.git";
|
owner = "bingmann";
|
||||||
rev = "05db428c796a7006d63efdbe314f976e0aa881d6";
|
repo = "sound-of-sorting";
|
||||||
sha256 = "0m2f1dym3hcar7784sjzkbf940b28r02ajhkjgyyw7715psifb8l";
|
rev = "5884a357af5775fb57d89eb028d4bf150760db75";
|
||||||
fetchSubmodules = true;
|
sha256 = "01bpzn38cwn9zlydzvnfz9k7mxdnjnvgnbcpx7i4al8fha7x9lw8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with stdenv.lib;
|
buildInputs =
|
||||||
[ wxGTK SDL2 ];
|
[ wxGTK SDL2 ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
export SDL_CONFIG=${SDL2.dev}/bin/sdl2-config
|
export SDL_CONFIG=${SDL2.dev}/bin/sdl2-config
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib;{
|
meta = with stdenv.lib; {
|
||||||
description = "Audibilization and Visualization of Sorting Algorithms";
|
description = "Audibilization and Visualization of Sorting Algorithms";
|
||||||
homepage = "http://panthema.net/2013/sound-of-sorting/";
|
homepage = "http://panthema.net/2013/sound-of-sorting/";
|
||||||
license = with licenses; gpl3;
|
license = with licenses; gpl3;
|
||||||
|
Loading…
Reference in New Issue
Block a user