lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

* sound-of-sorting: 0.6.5 -> 20150721

* sound-of-sorting: correct unstable version format

authored by

Anderson Torres and committed by
Jörg Thalheim
e96a2f84 00ffbf06

+11 -10
+11 -10
pkgs/misc/sound-of-sorting/default.nix
··· 1 - { stdenv, fetchurl 2 - , SDL2, wxGTK 3 - }: 1 + { stdenv, fetchgit 2 + , SDL2, wxGTK }: 4 3 5 4 stdenv.mkDerivation rec { 6 5 7 6 name = "sound-of-sorting-${version}"; 8 - version = "0.6.5"; 7 + version = "unstable-2015-07-21"; 9 8 10 - src = fetchurl { 11 - url = "https://github.com/bingmann/sound-of-sorting/archive/${name}.tar.gz"; 12 - sha256 = "1524bhmy5067z9bjc15hvqslw43adgpdn4272iymq09ahja4x76b"; 9 + src = fetchgit { 10 + url = "https://github.com/bingmann/sound-of-sorting.git"; 11 + rev = "05db428c796a7006d63efdbe314f976e0aa881d6"; 12 + sha256 = "0m2f1dym3hcar7784sjzkbf940b28r02ajhkjgyyw7715psifb8l"; 13 + fetchSubmodules = true; 13 14 }; 14 15 15 16 buildInputs = with stdenv.lib; 16 17 [ wxGTK SDL2 ]; 17 18 18 19 preConfigure = '' 19 - export SDL_CONFIG=${SDL2}/bin/sdl2-config 20 + export SDL_CONFIG=${SDL2.dev}/bin/sdl2-config 20 21 ''; 21 22 22 23 meta = with stdenv.lib;{ 23 24 description = "Audibilization and Visualization of Sorting Algorithms"; 24 25 homepage = http://panthema.net/2013/sound-of-sorting/; 25 - license = licenses.gpl3; 26 - maintainers = [ maintainers.AndersonTorres ]; 26 + license = with licenses; gpl3; 27 + maintainers = with maintainers; [ AndersonTorres ]; 27 28 }; 28 29 }