Merge pull request #110612 from kanashimia/master

sord: 0.16.4 -> unstable-2021-01-12
This commit is contained in:
Sandro 2021-01-24 16:26:05 +01:00 committed by GitHub
commit 367618236a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

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 {
pname = "sord";
version = "0.16.4";
version = "unstable-2021-01-12";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
sha256 = "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi";
# Commit picked in mitigation of #109729
src = fetchFromGitHub {
owner = "drobilla";
repo = pname;
rev = "d2efdb2d026216449599350b55c2c85c0d3efb89";
sha256 = "hHTwK+K6cj9MGO77a1IXiUZtEbXZ08cLGkYZ5eMOIVA=";
fetchSubmodules = true;
};
nativeBuildInputs = [ pkg-config python3 wafHook ];