Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perlPackages.AppMusicChordPro: init at 0.977 #100295

Merged
merged 5 commits into from Oct 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
75 changes: 75 additions & 0 deletions pkgs/top-level/perl-packages.nix
Expand Up @@ -597,6 +597,41 @@ let
};
};

AppMusicChordPro = buildPerlPackage {
pname = "App-Music-ChordPro";
version = "0.977";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JV/JV/App-Music-ChordPro-0.977.tar.gz";
sha256 = "0ggip43cddi5f6rylb07f56dhkfhbcbm621lvcnjfadnn9lrbwqh";
};
buildInputs = [ PodParser ];
propagatedBuildInputs = [ AppPackager FileLoadLines IOString ImageInfo PDFAPI2 StringInterpolateNamed TextLayout ]
++ stdenv.lib.optional (!stdenv.isDarwin) [ Wx ];
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin shortenPerlShebang;
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
shortenPerlShebang $out/bin/chordpro
rm $out/bin/wxchordpro # Wx not supported on darwin
'';
meta = {
homepage = "http://www.chordpro.org";
description = "A lyrics and chords formatting program";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

AppPackager = buildPerlPackage {
pname = "App-Packager";
version = "1.430.1";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JV/JV/App-Packager-1.430.1.tar.gz";
sha256 = "57f4d014458387f9e2ed2dfd8615d1e2545b8a6504b10af22486578d8be374a3";
};
meta = {
description = "Abstraction for Packagers";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

Appperlbrew = buildPerlModule {
pname = "App-perlbrew";
version = "0.88";
Expand Down Expand Up @@ -7802,6 +7837,19 @@ let
propagatedBuildInputs = [ HTTPDate ];
};

FileLoadLines = buildPerlPackage {
pname = "File-LoadLines";
version = "0.02";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JV/JV/File-LoadLines-0.02.tar.gz";
sha256 = "ab0c1c31cf7b694dd3c9a0707098f7483763d46b60799a7f496ea0588be46b7b";
};
meta = {
description = "Load lines from file";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

FileMimeInfo = buildPerlPackage {
pname = "File-MimeInfo";
version = "0.29";
Expand Down Expand Up @@ -18234,6 +18282,19 @@ let
propagatedBuildInputs = [ PadWalker SafeHole ];
};

StringInterpolateNamed = buildPerlPackage {
pname = "String-Interpolate-Named";
version = "1.00";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JV/JV/String-Interpolate-Named-1.00.tar.gz";
sha256 = "727299fa69258b604770e059ec4da906bfde71861fdd1e3e89e30677371c5a80";
};
meta = {
description = "Interpolated named arguments in string";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

StringMkPasswd = buildPerlPackage {
pname = "String-MkPasswd";
version = "0.05";
Expand Down Expand Up @@ -20956,6 +21017,20 @@ let
buildInputs = [ FileFindRule TestPod TestPodCoverage ];
};

TextLayout = buildPerlPackage {
pname = "Text-Layout";
version = "0.019";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JV/JV/Text-Layout-0.019.tar.gz";
sha256 = "a043f2a89e113b29c523a9efa71fa8398ed75edd482193901b38d08dd4a4108e";
};
buildInputs = [ PDFAPI2 ];
meta = {
description = "Pango style markup formatting";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

TextLorem = buildPerlModule {
pname = "Text-Lorem";
version = "0.3";
Expand Down