summary refs log tree commit diff
path: root/pkgs/tools/audio/abcmidi
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2017-12-03 18:11:24 +0100
committerRobert Helgesson <robert@rycee.net>2017-12-05 15:50:04 +0100
commit601c895bc13fd2c60db2f9dab59c741c4693a4c4 (patch)
tree23b0a1852b5e50ce174e438a6624a06dd26e9f96 /pkgs/tools/audio/abcmidi
parentf649b0497d8060c55335e4a230c9c8b24fc7a08e (diff)
downloadnixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.tar
nixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.tar.gz
nixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.tar.bz2
nixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.tar.lz
nixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.tar.xz
nixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.tar.zst
nixpkgs-601c895bc13fd2c60db2f9dab59c741c4693a4c4.zip
abcMIDI: 2017.06.10 -> 2017.11.27
Diffstat (limited to 'pkgs/tools/audio/abcmidi')
-rw-r--r--pkgs/tools/audio/abcmidi/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/tools/audio/abcmidi/default.nix b/pkgs/tools/audio/abcmidi/default.nix
index cbb674f3801..dee7d19e8c7 100644
--- a/pkgs/tools/audio/abcmidi/default.nix
+++ b/pkgs/tools/audio/abcmidi/default.nix
@@ -1,23 +1,24 @@
-{ stdenv, fetchFromGitHub }:
+{ stdenv, fetchurl, unzip }:
 
 stdenv.mkDerivation rec {
   name = "abcMIDI-${version}";
-  version = "2017.06.10";
+  version = "2017.11.27";
 
-  src = fetchFromGitHub {
-    owner = "leesavide";
-    repo = "abcmidi";
-    rev = name;
-    sha256 = "0y92m3mj63vvy79ksq4z5hgkz6w50drg9a4bmbk6jylny0l0bdpy";
+  # You can find new releases on http://ifdo.ca/~seymour/runabc/top.html
+  src = fetchurl {
+    url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
+    sha256 = "095nnyaqnsr3v7hsswpad9g0hxdnr4s6z8yk1bmr3g1j0cfv1xs9";
   };
 
+  nativeBuildInputs = [ unzip ];
+
   # 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/;
     license = licenses.gpl2Plus;
-    description = "abc <-> MIDI conversion utilities";
+    description = "Utilities for converting between abc and MIDI";
     maintainers = [ maintainers.dotlambda ];
   };
 }