cmus: 2.6.0 -> 2.7.0, add a maintainer

authored by Jan Malakhovski and committed by Rok Garbas 3ef66919 30954fc1

+8 -6
+8 -6
pkgs/applications/audio/cmus/default.nix
··· 1 - { stdenv, fetchgit, ncurses, pkgconfig, alsaLib, flac, libmad, ffmpeg, libvorbis, libmpc, mp4v2, libcue, libpulseaudio}: 2 3 stdenv.mkDerivation rec { 4 name = "cmus-${version}"; 5 - version = "2.6.0"; 6 7 - src = fetchgit { 8 - url = https://github.com/cmus/cmus.git; 9 - rev = "46b71032da827d22d4fae5bf2afcc4c9afef568c"; 10 - sha256 = "1hkqifll5ryf3ljp3w1dxz1p8m6rk34fpazc6vwavis6ga310hka"; 11 }; 12 13 configurePhase = "./configure prefix=$out"; ··· 18 description = "Small, fast and powerful console music player for Linux and *BSD"; 19 homepage = https://cmus.github.io/; 20 license = stdenv.lib.licenses.gpl2; 21 }; 22 }
··· 1 + { stdenv, fetchFromGitHub, ncurses, pkgconfig, alsaLib, flac, libmad, ffmpeg, libvorbis, libmpc, mp4v2, libcue, libpulseaudio}: 2 3 stdenv.mkDerivation rec { 4 name = "cmus-${version}"; 5 + version = "2.7.0"; 6 7 + src = fetchFromGitHub { 8 + owner = "cmus"; 9 + repo = "cmus"; 10 + rev = "0306cc74c5073a85cf8619c61da5b94a3f863eaa"; 11 + sha256 = "18w9mznb843nzkrcqvshfha51mlpdl92zlvb5wfc5dpgrbf37728"; 12 }; 13 14 configurePhase = "./configure prefix=$out"; ··· 19 description = "Small, fast and powerful console music player for Linux and *BSD"; 20 homepage = https://cmus.github.io/; 21 license = stdenv.lib.licenses.gpl2; 22 + maintainers = [ stdenv.lib.maintainers.oxij ]; 23 }; 24 }