Skip to content

Commit

Permalink
Merge #578: rtl: 0.13.1 -> 0.13.2
Browse files Browse the repository at this point in the history
314020b rtl: 0.13.1 -> 0.13.2 (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    ACK 314020b

Tree-SHA512: 553dd1b34fce8847f650a187ab39c0827461bf49693c11c5329186fba7864538e13700f50bb30c59e1988ce72fcecb5a06c491c30e7a1fcc2d0457f398234dc2
  • Loading branch information
jonasnick committed Dec 22, 2022
2 parents 932e4c9 + 314020b commit a6ab131
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
21 changes: 5 additions & 16 deletions pkgs/rtl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,11 @@
}:
let self = stdenvNoCC.mkDerivation {
pname = "rtl";
version = "0.13.1";
version = "0.13.2";

src = applyPatches {
src = fetchurl {
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
hash = "sha256-k40xwDDJxny1nPN2xz60WfbinxMNM0QPdglibO2anZw=";
};

patches = [
# Move non-runtime deps to `devDependencies`
# https://github.com/Ride-The-Lightning/RTL/pull/1070
(fetchpatch {
url = "https://github.com/Ride-The-Lightning/RTL/pull/1070.patch";
sha256 = "sha256-esDkYI27SNzj2AhYHS9XqlW0r2mr+o0K4A6PUE2kbWU=";
})
];
src = fetchurl {
url = "https://github.com/Ride-The-Lightning/RTL/archive/refs/tags/v${self.version}.tar.gz";
hash = "sha256-7VrLxmE+xPCipx7UOG1mja2pSBrj+swk55afcvBQeDU=";
};

passthru = {
Expand All @@ -34,7 +23,7 @@ let self = stdenvNoCC.mkDerivation {

nodeModules = fetchNodeModules {
inherit (self) src nodejs;
hash = "sha256-bYZ6snfXhDZ3MMga45EHVrPZxC0/Q0e3AgCgMBire64=";
hash = "sha256-ohS6gVX0M1Ir1QE9SjibbCrBpkXYIv5jV1Bkv0czRw4=";
};
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/rtl/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail
. "${BASH_SOURCE[0]%/*}/../../helper/run-in-nix-env" "gnupg wget gnused" "$@"

version="0.13.1"
version="0.13.2"
repo=https://github.com/Ride-The-Lightning/RTL

scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)
Expand Down

0 comments on commit a6ab131

Please sign in to comment.