lowdown-0-9: init at 0.9.0

Backport 6ea6a232cc62269866b5690094015fcab2184e18 as a separate
attribute to save us from a breaking change (newer version needed
by nixUnstable).
This commit is contained in:
sternenseemann
2021-10-04 21:46:43 +02:00
parent 6314733b4e
commit fe5e97cd74
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# Latest version of lowdown, backported from unstable separately due to breaking changes
{ lowdown
, fetchurl
}:
lowdown.overrideAttrs (_: rec {
version = "0.9.0";
src = fetchurl {
url = "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-${version}.tar.gz";
sha512 = "0v3l70c9mal67i369bk3q67qyn07kmclybcd5lj5ibdrrccq1jzsxn2sy39ziy77in7cygcb1lgf9vzacx9rscw94i6259fy0dpnf0h";
};
})