2011-01-02 23:23:59 +00:00
|
|
|
runCommand: subversion: repository:
|
|
|
|
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
|
2020-11-05 23:28:15 +00:00
|
|
|
'')
|