File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ Unreleased]
4+ ### Changed
5+ - Versions are now for the whole of dapptools, rather than per-tool.
6+ Accordingly, the old CHANGELOG files are superseded by this one.
Original file line number Diff line number Diff line change 1+ 1
Original file line number Diff line number Diff line change 33
44stdenv . mkDerivation rec {
55 name = "seth-${ version } " ;
6- version = "0.8.4" ;
6+ version = lib . fileContents ../../VERSION ;
77 src = ./. ;
88
99 nativeBuildInputs = [ makeWrapper ] ;
@@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
1818 else "" }
1919 '' ;
2020
21+ postFixup = ''
22+ sed -i s/VERSION_PLACEHOLDER/${ version } / $out/libexec/seth/seth---version
23+ '' ;
24+
2125 meta = {
2226 description = "Command-line client for talking to Ethereum nodes" ;
2327 homepage = https://github.com/dapphub/dapptools/src/seth/ ;
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- cat << .
3- seth 0.8.4
2+ cat << EOF
3+ seth VERSION_PLACEHOLDER
44Copyright (C) 2016, 2017 Daniel Brockman <[email protected] > 55License: GNU GPL version 3 or later <https://gnu.org/licenses/gpl>.
66This is free software: you are free to change and redistribute it.
77There is NO WARRANTY, to the extent permitted by law.
8- .
8+ EOF
You can’t perform that action at this time.
0 commit comments