core/pkgs/build-support/fetchsvnrevision/default.nix

10 lines
283 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
runCommand: subversion: repository:
2024-05-13 21:24:10 +00:00
import (runCommand "head-revision" {
buildInputs = [ subversion ];
dummy = builtins.currentTime;
} ''
rev=$(echo p | svn ls -v --depth empty ${repository} |awk '{ print $1 }')
echo "[ \"$rev\" ]" > $out
echo Latest revision is $rev
'')