Merge pull request #34196 from dotlambda/abcm2ps

abcm2ps: 8.13.18 -> 8.13.19

authored by adisbladis and committed by GitHub d0127fec 02c8939f

+7 -2
+7 -2
pkgs/tools/audio/abcm2ps/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "abcm2ps-${version}"; 5 - version = "8.13.18"; 6 7 src = fetchFromGitHub { 8 owner = "leesavide"; 9 repo = "abcm2ps"; 10 rev = "v${version}"; 11 - sha256 = "0fzhk43fidyflqj8wd7m3m4pibzrbr1c120xi9wskzb3627pgyh1"; 12 }; 13 14 prePatch = '' ··· 19 "--INSTALL=install" 20 ]; 21 22 buildInputs = [ which pkgconfig freetype pango ]; 23 24 meta = with stdenv.lib; { 25 homepage = http://moinejf.free.fr/; 26 license = licenses.gpl3; 27 description = "abcm2ps is a command line program which converts ABC to music sheet in PostScript or SVG format"; 28 maintainers = [ maintainers.dotlambda ]; 29 }; 30 }
··· 2 3 stdenv.mkDerivation rec { 4 name = "abcm2ps-${version}"; 5 + version = "8.13.19"; 6 7 src = fetchFromGitHub { 8 owner = "leesavide"; 9 repo = "abcm2ps"; 10 rev = "v${version}"; 11 + sha256 = "0iv8fzl601rkww9dplajwzlfdb8r7142qdsj8xmvrbwqkaval51f"; 12 }; 13 14 prePatch = '' ··· 19 "--INSTALL=install" 20 ]; 21 22 + buildFlags = [ 23 + "CC=${stdenv.cc}/bin/cc" 24 + ]; 25 + 26 buildInputs = [ which pkgconfig freetype pango ]; 27 28 meta = with stdenv.lib; { 29 homepage = http://moinejf.free.fr/; 30 license = licenses.gpl3; 31 description = "abcm2ps is a command line program which converts ABC to music sheet in PostScript or SVG format"; 32 + platforms = platforms.unix; 33 maintainers = [ maintainers.dotlambda ]; 34 }; 35 }