sord: 0.16.4 -> unstable-2021-01-12

This commit is contained in:
Nikita Ursol 2021-01-23 18:21:32 +02:00
parent 0389d5b148
commit f2aa6f79cd

View File

@ -1,12 +1,16 @@
{ lib, stdenv, fetchurl, pkg-config, python3, serd, pcre, wafHook }: { lib, stdenv, fetchFromGitHub, pkg-config, python3, serd, pcre, wafHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "sord"; pname = "sord";
version = "0.16.4"; version = "unstable-2021-01-12";
src = fetchurl { # Commit picked in mitigation of #109729
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2"; src = fetchFromGitHub {
sha256 = "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi"; owner = "drobilla";
repo = pname;
rev = "d2efdb2d026216449599350b55c2c85c0d3efb89";
sha256 = "hHTwK+K6cj9MGO77a1IXiUZtEbXZ08cLGkYZ5eMOIVA=";
fetchSubmodules = true;
}; };
nativeBuildInputs = [ pkg-config python3 wafHook ]; nativeBuildInputs = [ pkg-config python3 wafHook ];