Merge pull request #282744 from t4ccer/t4/blink-1.1.0
This commit is contained in:
commit
c2f43139b2
1 changed files with 3 additions and 11 deletions
|
@ -1,24 +1,16 @@
|
|||
{ stdenv, fetchFromGitHub, fetchpatch, lib }:
|
||||
{ stdenv, fetchFromGitHub, lib }:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "blink";
|
||||
version = "1.0.0";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jart";
|
||||
repo = "blink";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-W7yL7Ut3MRygJhFGr+GIj/CK57MkuDTcenft8IvH7jU=";
|
||||
hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I=";
|
||||
};
|
||||
|
||||
# Drop after next release
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/jart/blink/commit/b31fed832b10d32eadaec885fb20dacbb0eb6986.patch";
|
||||
hash = "sha256-DfZxW/H58qXAjkQz31YS4SPMz7152ZzNHK7wHopgnQA=";
|
||||
})
|
||||
];
|
||||
|
||||
# Do not include --enable-static and --disable-shared flags during static compilation
|
||||
dontAddStaticConfigureFlags = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue