rtl: 0.13.0 -> 0.13.1

This commit is contained in:
Erik Arvstedt 2022-08-27 14:08:47 +02:00
parent ae76fbbc4b
commit c3769014b1
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
2 changed files with 4 additions and 4 deletions

View File

@ -10,12 +10,12 @@
}: }:
let self = stdenvNoCC.mkDerivation { let self = stdenvNoCC.mkDerivation {
pname = "rtl"; pname = "rtl";
version = "0.13.0"; version = "0.13.1";
src = applyPatches { src = applyPatches {
src = fetchurl { src = fetchurl {
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz"; url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
hash = "sha256-6eopIO5ge6+vkNvZomjAB6e5Qi2kkhXpnSOWQQm53R0="; hash = "sha256-k40xwDDJxny1nPN2xz60WfbinxMNM0QPdglibO2anZw=";
}; };
patches = [ patches = [
@ -34,7 +34,7 @@ let self = stdenvNoCC.mkDerivation {
nodeModules = fetchNodeModules { nodeModules = fetchNodeModules {
inherit (self) src nodejs; inherit (self) src nodejs;
hash = "sha256-LmCrf+lIXz9i9NVALYk9IOBUoPbW8fj+fUsyVJgAANI="; hash = "sha256-bYZ6snfXhDZ3MMga45EHVrPZxC0/Q0e3AgCgMBire64=";
}; };
}; };

View File

@ -2,7 +2,7 @@
#! nix-shell -i bash -p gnupg wget gnused #! nix-shell -i bash -p gnupg wget gnused
set -euo pipefail set -euo pipefail
version="0.13.0" version="0.13.1"
repo=https://github.com/Ride-The-Lightning/RTL repo=https://github.com/Ride-The-Lightning/RTL
scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd) scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)