about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorusertam <heiyiutam@gmail.com>2022-08-01 03:14:24 +0800
committerEric Bailey <yurrriq@users.noreply.github.com>2022-08-16 16:27:21 -0500
commit0b73b43a942d4f264036c74d03758194ba0b5855 (patch)
tree58c655e53dace8905cb0b8646d79afa9253acd7c /pkgs/misc
parent6085a7ceee06a99dfb1f3afe30ed73d790fb823e (diff)
lilypond-unstable and lilypond-unstable-with-fonts: init at 2.23.11
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Eric Bailey <eric@ericb.me>
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/lilypond/unstable.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/misc/lilypond/unstable.nix b/pkgs/misc/lilypond/unstable.nix
new file mode 100644
index 0000000000000..dc137ccd7e9e6
--- /dev/null
+++ b/pkgs/misc/lilypond/unstable.nix
@@ -0,0 +1,11 @@
+{ lib, fetchurl, guile, lilypond }:
+
+(lilypond.override {
+  inherit guile;
+}).overrideAttrs (oldAttrs: rec {
+  version = "2.23.11";
+  src = fetchurl {
+    url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
+    sha256 = "sha256-4VjcuZvRmpPmiZ42zyk9xYPlsSN6kEsBSRe30P+raQ8=";
+  };
+})