1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/audio/abcmidi/default.nix

24 lines
710 B
Nix
Raw Normal View History

2017-12-13 19:07:06 +00:00
{ stdenv, fetchzip }:
2017-09-15 09:06:38 +01:00
stdenv.mkDerivation rec {
pname = "abcMIDI";
2019-11-25 08:22:56 +00:00
version = "2019.11.11";
2017-09-15 09:06:38 +01:00
2017-12-13 19:07:06 +00:00
src = fetchzip {
url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
2019-11-25 08:22:56 +00:00
sha256 = "0xid13jqhbknrs31j74iwgjm0h0c64w3kqk9g9am1pkjwxh8d460";
2017-09-15 09:06:38 +01:00
};
# There is also a file called "makefile" which seems to be preferred by the standard build phase
makefile = "Makefile";
meta = with stdenv.lib; {
homepage = http://abc.sourceforge.net/abcMIDI/;
2018-01-26 01:17:46 +00:00
downloadPage = https://ifdo.ca/~seymour/runabc/top.html;
2017-09-15 09:06:38 +01:00
license = licenses.gpl2Plus;
2017-12-03 17:11:24 +00:00
description = "Utilities for converting between abc and MIDI";
2018-01-26 01:17:46 +00:00
platforms = platforms.unix;
2017-09-15 09:06:38 +01:00
maintainers = [ maintainers.dotlambda ];
};
}