sound-of-sorting: 0.6.5 -> 20150721 (#23549)

* sound-of-sorting: 0.6.5 -> 20150721

* sound-of-sorting: correct unstable version format
This commit is contained in:
Anderson Torres 2017-03-06 11:24:40 -03:00 committed by Jörg Thalheim
parent 00ffbf060c
commit e96a2f8450

View File

@ -1,28 +1,29 @@
{ stdenv, fetchurl { stdenv, fetchgit
, SDL2, wxGTK , SDL2, wxGTK }:
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sound-of-sorting-${version}"; name = "sound-of-sorting-${version}";
version = "0.6.5"; version = "unstable-2015-07-21";
src = fetchurl { src = fetchgit {
url = "https://github.com/bingmann/sound-of-sorting/archive/${name}.tar.gz"; url = "https://github.com/bingmann/sound-of-sorting.git";
sha256 = "1524bhmy5067z9bjc15hvqslw43adgpdn4272iymq09ahja4x76b"; rev = "05db428c796a7006d63efdbe314f976e0aa881d6";
sha256 = "0m2f1dym3hcar7784sjzkbf940b28r02ajhkjgyyw7715psifb8l";
fetchSubmodules = true;
}; };
buildInputs = with stdenv.lib; buildInputs = with stdenv.lib;
[ wxGTK SDL2 ]; [ wxGTK SDL2 ];
preConfigure = '' preConfigure = ''
export SDL_CONFIG=${SDL2}/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 = licenses.gpl3; license = with licenses; gpl3;
maintainers = [ maintainers.AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
}; };
} }